Skip to content

Commit

Permalink
Use rustls instead of system SSL implementation
Browse files Browse the repository at this point in the history
Removes the dependency on OpenSSL on Linux, which makes the crates easier to build.
  • Loading branch information
phil-opp committed Mar 16, 2023
1 parent 9a4219e commit f739445
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 113 deletions.
115 changes: 3 additions & 112 deletions Cargo.lock

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

4 changes: 3 additions & 1 deletion libraries/extensions/download/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ license = "Apache-2.0"
[dependencies]
eyre = "0.6.8"
tempfile = "3.4.0"
reqwest = "0.11.12"
reqwest = { version = "0.11.12", default-features = false, features = [
"rustls",
] }
tokio = { version = "1.24.2" }
tracing = "0.1.36"

0 comments on commit f739445

Please sign in to comment.