Skip to content

Commit d4f2a5a

Browse files
committed
rustls: do not depend on unnecessary features
The main motivation for that change is to prevent an unnecessary dependency to rustls/aws_lc_rs [0]. aws_lc_rs has a non-default build with external tools (cmake, nasm) which breaks CI in consumer projects, such as ttfb [1]. So instead of forcing it, we make it optional. [0]: https://docs.rs/rustls/latest/rustls/#crate-features [1]: https://github.com/phip1611/ttfb/
1 parent e30393e commit d4f2a5a

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Cargo.toml

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustls-connector"
3-
version = "0.20.0"
3+
version = "0.21.0"
44
authors = ["Marc-Antoine Perennou <[email protected]>"]
55
edition = "2021"
66
description = "Connector similar to openssl or native-tls for rustls"
@@ -20,7 +20,11 @@ native-certs = ["rustls-native-certs", "log"]
2020
webpki-roots-certs = ["webpki-roots"]
2121

2222
[dependencies]
23-
rustls = "^0.23"
23+
# Caution. No default crypt provider. Users may have to add `rustls´
24+
# additonally as dependency and specify "ring" or "aws_lc_rs". Note that
25+
# although "aws_lc_rs" is the default, it doesn't build as easily on all
26+
# platforms. See https://docs.rs/rustls/latest/rustls/#crate-features.
27+
rustls = { version = "^0.23", default-features = false, features = ["std"] }
2428
rustls-webpki = "^0.102"
2529

2630
[dependencies.log]

0 commit comments

Comments
 (0)