Tpt commented on code in PR #585:
URL:
https://github.com/apache/arrow-rs-object-store/pull/585#discussion_r3159008684
##########
Cargo.toml:
##########
@@ -54,8 +54,9 @@ hyper = { version = "1.2", default-features = false, optional
= true }
md-5 = { version = "0.10.6", default-features = false, optional = true }
quick-xml = { version = "0.38.0", features = ["serialize",
"overlapped-lists"], optional = true }
rand = { version = "0.9", default-features = false, features = ["std",
"std_rng", "thread_rng"], optional = true }
-reqwest = { version = "0.12", default-features = false, features =
["rustls-tls-native-roots", "http2"], optional = true }
+reqwest = { version = "0.13", default-features = false, features = ["http2",
"rustls-no-provider"], optional = true }
Review Comment:
@tustvold Indeed, it's what happens if the `default-tls` default feature is
enabled. But if I read
https://docs.rs/reqwest/latest/reqwest/tls/index.html#default-tls correctly
(please correct me if I am wrong), this does not happen if `default-features =
false` is used, and it's what is done here.
(please ignore this message if this discussion is not useful, thank you for
your work on this crate)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]