Skip to content

Commit

Permalink
Use rustls for TLS (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron authored Oct 18, 2024
1 parent dc47e23 commit bda2be6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
*.whl

# Generated by Cargo
# will have compiled files and executables
debug/
Expand Down
5 changes: 5 additions & 0 deletions object-store-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,8 @@ tokio = { workspace = true, features = [
"sync",
] }
url = { workspace = true }

# We opt-in to using rustls as the TLS provider for reqwest, which is the HTTP
# library used by object_store.
# https://github.com/seanmonstar/reqwest/issues/2025
reqwest = { version = "*", features = ["rustls-tls-native-roots"] }

0 comments on commit bda2be6

Please sign in to comment.