diff --git a/Cargo.lock b/Cargo.lock index ab0dd1b8fd6..5eb002cb8bd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1957,7 +1957,7 @@ dependencies = [ "libc", "percent-encoding", "pin-project-lite", - "socket2 0.5.9", + "socket2 0.6.3", "system-configuration 0.6.1", "tokio", "tower-service", @@ -3179,7 +3179,7 @@ dependencies = [ "thiserror 2.0.18", "tokio", "x509-parser 0.17.0", - "yasna", + "yasna 0.6.0", ] [[package]] @@ -4306,7 +4306,7 @@ dependencies = [ "quinn-udp", "rustc-hash", "rustls", - "socket2 0.5.9", + "socket2 0.6.3", "thiserror 2.0.18", "tokio", "tracing", @@ -4517,7 +4517,7 @@ dependencies = [ "rustls-pki-types", "time", "x509-parser 0.16.0", - "yasna", + "yasna 0.5.2", ] [[package]] @@ -5452,7 +5452,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" dependencies = [ "fastrand", - "getrandom 0.3.2", + "getrandom 0.4.2", "once_cell", "rustix 1.1.4", "windows-sys 0.61.2", @@ -7335,6 +7335,12 @@ dependencies = [ "time", ] +[[package]] +name = "yasna" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5f6765e852b9b4dc8e2a76843e4d64d1cea8e79bcde0b6901aea8e7c7f08282" + [[package]] name = "yoke" version = "0.7.5" diff --git a/transports/tls/Cargo.toml b/transports/tls/Cargo.toml index 3fca147a10f..897cd14a664 100644 --- a/transports/tls/Cargo.toml +++ b/transports/tls/Cargo.toml @@ -18,7 +18,7 @@ ring = { workspace = true } thiserror = { workspace = true } webpki = { version = "0.103", package = "rustls-webpki", features = ["std"] } x509-parser = "0.17.0" -yasna = "0.5.2" +yasna = "0.6.0" # Exposed dependencies. Breaking changes to these are breaking changes to us. [dependencies.rustls]