Skip to content

Commit

Permalink
chore: remove rustls-tls feature from reqwest
Browse files Browse the repository at this point in the history
having rustls-tls in features is basically an alias for 'rustls-tls-webpki-roots' and we already have the feature to use rustls-tls-native-roots.
moreover 'rustls-tls-webpki-roots' pulls in a crate with a license considered copyleft.
  • Loading branch information
theswiftfox authored Jun 21, 2023
1 parent 17e783a commit c12a06f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/rust/driver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ zip = "0.6.2"
[dependencies.reqwest]
version = "0.11.16"
default-features = false
features = ["rustls-tls", "rustls-tls-native-roots", "json", "gzip", "deflate", "stream"]
features = ["rustls-tls-native-roots", "json", "gzip", "deflate", "stream"]

[dev-dependencies]
env_logger = "0.10.0"
Expand Down

0 comments on commit c12a06f

Please sign in to comment.