Skip to content

Commit

Permalink
Disable reqwest unnecessary features (specifically: native TLS)
Browse files Browse the repository at this point in the history
In elan-ev#546 I configured dependencies to avoid dynamically linking libssl
and libz. I just checked again after the Meili update and noticed that
those library are again linked dynamically. I think this has to do with
me adding `reqwest` as dependencies without disabling default features.

With this commit, libssl and libz are again not dynamically linked.
  • Loading branch information
LukasKalbertodt committed Dec 12, 2024
1 parent c8de648 commit 4fcbdf1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 151 deletions.
150 changes: 0 additions & 150 deletions backend/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ url = "2.4.1"
tracing = { version = "0.1.40", features = ["log"] }
tracing-log = "0.2.0"
tracing-subscriber = "0.3.18"
reqwest = "0.12.4"
reqwest = { version = "0.12.4", default-features = false, features = ["rustls-tls"] }
subtp = "0.2.0"
xmlparser = "0.13.6"
sha1 = "0.10.6"
Expand Down

0 comments on commit 4fcbdf1

Please sign in to comment.