Skip to content

Commit

Permalink
use rustls-ssl
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron committed Mar 22, 2024
1 parent 1773752 commit 45b5673
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 12 deletions.
11 changes: 1 addition & 10 deletions python/core/Cargo.lock

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

6 changes: 4 additions & 2 deletions python/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,7 @@ tokio = { version = "1.9", features = ["rt"] }
url = "2.5"

# reqwest is pulled in by object store, but not used by python binding itself
# for binary wheel best practice, statically link openssl
reqwest = { version = "*", features = ["native-tls-vendored"] }
# We statically link the rust-native rustls. For a binary wheel we want a
# static-compiled openssl anyways, and having it be native rust seems to make
# things simpler.
reqwest = { version = "*", features = ["rustls-tls"] }

0 comments on commit 45b5673

Please sign in to comment.