From 7a50b4f20fc515f124e3e0c789f44e1b0940da98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kr=C3=B6ning?= Date: Tue, 17 Sep 2024 14:56:37 +0200 Subject: [PATCH] build(deps): migrate to `rustls-rustcrypto` on crates.io MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Kröning --- Cargo.toml | 1 - examples/tls/Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8b405474f..b564338fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,6 @@ 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 = "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 = "v/0.26.0" } diff --git a/examples/tls/Cargo.toml b/examples/tls/Cargo.toml index 3234a9801..4e0b26491 100644 --- a/examples/tls/Cargo.toml +++ b/examples/tls/Cargo.toml @@ -18,7 +18,7 @@ tokio = { version = "1.0", features = ["macros", "net", "rt", "parking_lot"] } 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" +rustls-rustcrypto = "0.0.2-alpha" env_logger = { version = "0.11" } [target.'cfg(target_os = "hermit")'.dependencies]