Fix Linux/WSL build: resolve BoringSSL vs OpenSSL linking conflict#2
Open
andrey-golovko wants to merge 1 commit into199-biotechnologies:masterfrom
Open
Fix Linux/WSL build: resolve BoringSSL vs OpenSSL linking conflict#2andrey-golovko wants to merge 1 commit into199-biotechnologies:masterfrom
andrey-golovko wants to merge 1 commit into199-biotechnologies:masterfrom
Conversation
Two dependencies pulled native-tls (OpenSSL) into the link, conflicting with BoringSSL from rquest/boring-sys2: 1. self_update: default features enabled default-tls on reqwest. Fixed by disabling default-features and explicitly listing needed features. 2. readability: depended on reqwest@0.11 with native-tls. Removed and replaced with tl-based title extraction (already a dependency) plus existing text fallback extractors. Fixes 199-biotechnologies#1 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
self_updatepullingnative-tls(OpenSSL) via default features — conflicts with BoringSSL fromrquestreadabilitycrate (pulledreqwest@0.11with native-tls) — replace withtl-based title extractionFixes #1
Changes
self_update—default-features = false, explicit feature list withoutdefault-tlsreadability = "0.3"readability::extractor::extractwithtl-basedextract_title+ existingextract_text_fallbackTest plan
cargo build --releasesucceeds on Linux x86_64 (Debian 12 / WSL2)search --versionreturns valid JSON🤖 Generated with Claude Code