Skip to content

Commit 8ddefa4

Browse files
committed
Use rustls for TLS
1 parent dc47e23 commit 8ddefa4

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
*.whl
2+
13
# Generated by Cargo
24
# will have compiled files and executables
35
debug/

object-store-rs/Cargo.toml

+5
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,8 @@ tokio = { workspace = true, features = [
3434
"sync",
3535
] }
3636
url = { workspace = true }
37+
38+
# We opt-in to using rustls as the TLS provider for reqwest, which is the HTTP
39+
# library used by object_store.
40+
# https://github.com/seanmonstar/reqwest/issues/2025
41+
reqwest = { version = "*", features = ["rustls-tls-native-roots"] }

0 commit comments

Comments
 (0)