diff --git a/Cargo.toml b/Cargo.toml index 34b96fdb3..b24faee1b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ members = [ [patch.crates-io] hyper-util = { git = "https://github.com/hermit-os/hyper-util.git", branch = "hermit" } mio = { git = "https://github.com/hermit-os/mio.git", branch = "v0.8.x" } -rustls-rustcrypto = { git = "https://github.com/RustCrypto/rustls-rustcrypto", rev = "3c26a840a6fdf3c11950b7fda1ad5282dfaf9e35" } +rustls-rustcrypto = { git = "https://github.com/RustCrypto/rustls-rustcrypto", rev = "e6d5ed9652228ff09e56fee2534b6f60877fb7b8" } socket2 = { git = "https://github.com/hermit-os/socket2.git", branch = "hermit" } tokio = { git = "https://github.com/hermit-os/tokio.git", branch = "hermit" } -tokio-rustls = { git = "https://github.com/hermit-os/tokio-rustls.git", branch = "hermit" } +tokio-rustls = { git = "https://github.com/hermit-os/tokio-rustls.git", branch = "v/0.26.0" } diff --git a/examples/tls/Cargo.toml b/examples/tls/Cargo.toml index c4b6e6b49..36cc56e1f 100644 --- a/examples/tls/Cargo.toml +++ b/examples/tls/Cargo.toml @@ -16,8 +16,8 @@ http-body-util = "0.1" hyper-util = { version = "0.1", default-features = false, features = ["server-auto", "tokio"] } rustls-pemfile = "2" tokio = { version = "1.0", features = ["macros", "net", "rt", "parking_lot"] } -tokio-rustls = { version = "0.25", default-features = false, features = ["logging", "tls12"] } -rustls = { version = "0.22", default-features = false, features = ["logging", "tls12"] } +tokio-rustls = { version = "0.26", default-features = false, features = ["logging", "tls12"] } +rustls = { version = "0.23", default-features = false, features = ["logging", "tls12"] } pki-types = { package = "rustls-pki-types", version = "1" } rustls-rustcrypto = "0.1" env_logger = { version = "0.11" }