diff --git a/Cargo.lock b/Cargo.lock index a805fb8..0e68266 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -927,7 +927,7 @@ dependencies = [ "libc", "percent-encoding", "pin-project-lite", - "socket2", + "socket2 0.5.9", "system-configuration", "tokio", "tower-service", @@ -1158,7 +1158,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" dependencies = [ - "socket2", + "socket2 0.5.9", "widestring", "windows-sys 0.48.0", "winreg", @@ -1597,7 +1597,7 @@ dependencies = [ "quinn-udp", "rustc-hash", "rustls", - "socket2", + "socket2 0.5.9", "thiserror 2.0.12", "tokio", "tracing", @@ -1633,7 +1633,7 @@ dependencies = [ "cfg_aliases", "libc", "once_cell", - "socket2", + "socket2 0.5.9", "tracing", "windows-sys 0.59.0", ] @@ -2153,6 +2153,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 = "stable_deref_trait" version = "1.2.0" @@ -2387,9 +2397,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.46.1" +version = "1.47.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17" +checksum = "43864ed400b6043a4757a25c7a64a8efde741aed79a056a2fb348a406701bb35" dependencies = [ "backtrace", "bytes", @@ -2400,9 +2410,9 @@ dependencies = [ "pin-project-lite", "signal-hook-registry", "slab", - "socket2", + "socket2 0.6.0", "tokio-macros", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 3524f5e..91eb765 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ testcontainers = { version = "0.24.0", features = [ "http_wait", ], optional = true } thiserror = "2.0.12" -tokio = { version = "1.46.1", features = ["io-util"] } +tokio = { version = "1.47.0", features = ["io-util"] } tokio-util = { version = "0.7.15", features = ["io"] } tokio-stream = { version = "0.1.17", features = ["io-util"] } typed-builder = "0.21.0" @@ -40,7 +40,7 @@ url = "2.5.4" [dev-dependencies] testcontainers = { version = "0.24.0", features = ["http_wait"] } -tokio = { version = "1.46.1", features = ["full"] } +tokio = { version = "1.47.0", features = ["full"] } tokio-test = "0.4.4" # This is metadata required for working docs on docs.rs