diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 26d413639..c1d210069 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -100,7 +100,7 @@ dependencies = [ "futures-core", "futures-util", "mio", - "socket2", + "socket2 0.5.10", "tokio", "tracing", ] @@ -158,7 +158,7 @@ dependencies = [ "serde_json", "serde_urlencoded", "smallvec", - "socket2", + "socket2 0.5.10", "time", "tracing", "url", @@ -2037,7 +2037,7 @@ checksum = "e5766087c2235fec47fafa4cfecc81e494ee679d0fd4a59887ea0919bfb0e4fc" dependencies = [ "cfg-if", "libc", - "socket2", + "socket2 0.5.10", "windows-sys 0.48.0", ] @@ -2584,7 +2584,7 @@ dependencies = [ "sha2", "smallvec", "socket-factory", - "socket2", + "socket2 0.5.10", "stun_codec", "test-strategy", "thiserror 2.0.12", @@ -2669,7 +2669,7 @@ dependencies = [ "sha2", "snownet", "socket-factory", - "socket2", + "socket2 0.5.10", "test-case", "test-strategy", "thiserror 2.0.12", @@ -3552,7 +3552,7 @@ dependencies = [ "libc", "percent-encoding", "pin-project-lite", - "socket2", + "socket2 0.5.10", "tokio", "tower-service", "tracing", @@ -3840,7 +3840,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" dependencies = [ - "socket2", + "socket2 0.5.10", "widestring", "windows-sys 0.48.0", "winreg 0.50.0", @@ -5716,7 +5716,7 @@ dependencies = [ "quinn-udp", "rustc-hash", "rustls", - "socket2", + "socket2 0.5.10", "thiserror 2.0.12", "tokio", "tracing", @@ -5752,7 +5752,7 @@ dependencies = [ "cfg_aliases", "libc", "once_cell", - "socket2", + "socket2 0.5.10", "tracing", "windows-sys 0.59.0", ] @@ -6948,7 +6948,7 @@ dependencies = [ "libc", "opentelemetry", "quinn-udp", - "socket2", + "socket2 0.5.10", "tokio", "tracing", ] @@ -6963,6 +6963,16 @@ dependencies = [ "windows-sys 0.52.0", ] +[[package]] +name = "socket2" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807" +dependencies = [ + "libc", + "windows-sys 0.59.0", +] + [[package]] name = "softbuffer" version = "0.4.6" @@ -7952,9 +7962,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.46.1" +version = "1.47.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17" +checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038" dependencies = [ "backtrace", "bytes", @@ -7965,10 +7975,10 @@ dependencies = [ "pin-project-lite", "signal-hook-registry", "slab", - "socket2", + "socket2 0.6.0", "tokio-macros", "tracing", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] diff --git a/rust/Cargo.toml b/rust/Cargo.toml index a9c312177..0b4fd21da 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -183,7 +183,7 @@ test-case = "3.3.1" test-strategy = "0.4.3" thiserror = "2.0.12" time = "0.3.37" -tokio = "1.46" +tokio = "1.47" tokio-stream = "0.1.17" tokio-tungstenite = "0.27.0" tokio-util = "0.7.16" diff --git a/rust/deny.toml b/rust/deny.toml index 7e86ffe58..9993c7aa5 100644 --- a/rust/deny.toml +++ b/rust/deny.toml @@ -260,6 +260,7 @@ skip = [ "regex-syntax", "rustix", "siphasher", + "socket2", "syn", "thiserror", "thiserror-impl",