Skip to content

Commit 3c96116

Browse files
committed
Follow [email protected] features changes
Signed-off-by: Pierre Fenoll <[email protected]>
1 parent a322aba commit 3c96116

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ repository = "https://github.com/rustls/hyper-rustls"
1111
documentation = "https://docs.rs/hyper-rustls/"
1212

1313
[features]
14-
default = ["native-tokio", "http1", "tls12", "logging", "aws-lc-rs"]
15-
aws-lc-rs = ["rustls/aws_lc_rs"]
14+
default = ["native-tokio", "http1", "tls12", "log", "aws-lc-rs"]
15+
aws-lc-rs = ["rustls/aws-lc-rs"]
1616
fips = ["aws-lc-rs", "rustls/fips"]
1717
http1 = ["hyper-util/http1"]
1818
http2 = ["hyper-util/http2"]
19-
logging = ["log", "tokio-rustls/logging", "rustls/logging"]
19+
log = ["dep:log", "tokio-rustls/log", "rustls/log"]
2020
native-tokio = ["rustls-native-certs"]
2121
ring = ["rustls/ring"]
2222
tls12 = ["tokio-rustls/tls12", "rustls/tls12"]
@@ -29,18 +29,18 @@ hyper-util = { version = "0.1", default-features = false, features = ["client-le
2929
log = { version = "0.4.4", optional = true }
3030
pki-types = { package = "rustls-pki-types", version = "1" }
3131
rustls-native-certs = { version = "0.8", optional = true }
32-
rustls-platform-verifier = { version = "0.6", optional = true }
33-
rustls = { version = "0.23", default-features = false }
32+
rustls-platform-verifier = { git = "https://github.com/fenollp/rustls-platform-verifier.git", branch = "rustls-0.24", optional = true }
33+
rustls = { git = "https://github.com/rustls/rustls.git", rev = "30f3753a70c3b138841675b6381c0b63a3005414", default-features = false }
3434
tokio = "1.0"
35-
tokio-rustls = { version = "0.26", default-features = false }
35+
tokio-rustls = { git = "https://github.com/fenollp/tokio-rustls.git", branch = "rustls-0.24", default-features = false }
3636
tower-service = "0.3"
3737
webpki-roots = { version = "1", optional = true }
3838

3939
[dev-dependencies]
4040
cfg-if = "1"
4141
http-body-util = "0.1"
4242
hyper-util = { version = "0.1", default-features = false, features = ["server-auto"] }
43-
rustls = { version = "0.23", default-features = false, features = ["tls12"] }
43+
rustls = { git = "https://github.com/rustls/rustls.git", rev = "30f3753a70c3b138841675b6381c0b63a3005414", default-features = false, features = ["tls12"] }
4444
rustls-pemfile = "2"
4545
tokio = { version = "1.0", features = ["io-std", "macros", "net", "rt-multi-thread"] }
4646

@@ -59,7 +59,7 @@ no-default-features = true
5959
features = [
6060
"http1",
6161
"http2",
62-
"logging",
62+
"log",
6363
"native-tokio",
6464
"ring",
6565
"rustls-platform-verifier",

0 commit comments

Comments
 (0)