diff --git a/Cargo.lock b/Cargo.lock index 72f17471272..25319bcf968 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1658,7 +1658,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35bd3cf68c183738046838e300353e4716c674dc5e56890de4826801a6622a28" dependencies = [ "futures-io", - "rustls 0.21.8", + "rustls 0.21.9", ] [[package]] @@ -2978,7 +2978,7 @@ dependencies = [ "quinn", "rand 0.8.5", "ring 0.16.20", - "rustls 0.21.8", + "rustls 0.21.9", "socket2 0.5.5", "thiserror", "tokio", @@ -3186,7 +3186,7 @@ dependencies = [ "libp2p-yamux", "rcgen", "ring 0.16.20", - "rustls 0.21.8", + "rustls 0.21.9", "rustls-webpki", "thiserror", "tokio", @@ -4410,7 +4410,7 @@ dependencies = [ "quinn-proto", "quinn-udp", "rustc-hash", - "rustls 0.21.8", + "rustls 0.21.9", "thiserror", "tokio", "tracing", @@ -4426,7 +4426,7 @@ dependencies = [ "rand 0.8.5", "ring 0.16.20", "rustc-hash", - "rustls 0.21.8", + "rustls 0.21.9", "slab", "thiserror", "tinyvec", @@ -4953,9 +4953,9 @@ dependencies = [ [[package]] name = "rustls" -version = "0.21.8" +version = "0.21.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "446e14c5cda4f3f30fe71863c34ec70f5ac79d6087097ad0bb433e1be5edf04c" +checksum = "629648aced5775d558af50b2b4c7b02983a04b312126d45eeead26e7caa498b9" dependencies = [ "log", "ring 0.17.5", @@ -6378,7 +6378,7 @@ dependencies = [ "ring 0.16.20", "rtcp", "rtp", - "rustls 0.21.8", + "rustls 0.21.9", "sdp", "serde", "serde_json", @@ -6439,7 +6439,7 @@ dependencies = [ "rand_core 0.6.4", "rcgen", "ring 0.16.20", - "rustls 0.21.8", + "rustls 0.21.9", "sec1", "serde", "sha1", @@ -6784,9 +6784,9 @@ dependencies = [ [[package]] name = "zeroize" -version = "1.6.0" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9" +checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" dependencies = [ "zeroize_derive", ] diff --git a/identity/Cargo.toml b/identity/Cargo.toml index 97621740ebf..f70db830d3f 100644 --- a/identity/Cargo.toml +++ b/identity/Cargo.toml @@ -27,7 +27,7 @@ serde = { version = "1", optional = true, features = ["derive"] } sha2 = { version = "0.10.8", optional = true } thiserror = { version = "1.0", optional = true } void = { version = "1.0", optional = true } -zeroize = { version = "1.6", optional = true } +zeroize = { version = "1.7", optional = true } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] ring = { version = "0.17.5", features = [ "alloc", "std"], default-features = false, optional = true } diff --git a/transports/quic/Cargo.toml b/transports/quic/Cargo.toml index 22b241c8d8e..c59c9b64f1c 100644 --- a/transports/quic/Cargo.toml +++ b/transports/quic/Cargo.toml @@ -20,7 +20,7 @@ libp2p-identity = { workspace = true } parking_lot = "0.12.0" quinn = { version = "0.10.2", default-features = false, features = ["tls-rustls", "futures-io"] } rand = "0.8.5" -rustls = { version = "0.21.8", default-features = false } +rustls = { version = "0.21.9", default-features = false } thiserror = "1.0.50" tokio = { version = "1.34.0", default-features = false, features = ["net", "rt", "time"], optional = true } tracing = "0.1.37" diff --git a/transports/tls/Cargo.toml b/transports/tls/Cargo.toml index 196251dcb76..5a1e4788245 100644 --- a/transports/tls/Cargo.toml +++ b/transports/tls/Cargo.toml @@ -22,7 +22,7 @@ yasna = "0.5.2" # Exposed dependencies. Breaking changes to these are breaking changes to us. [dependencies.rustls] -version = "0.21.8" +version = "0.21.9" default-features = false features = ["dangerous_configuration"] # Must enable this to allow for custom verification code.