diff --git a/Cargo.lock b/Cargo.lock index 3bca6388..338ff9ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -55,7 +55,7 @@ dependencies = [ "futures-util", "mio", "pretty_env_logger", - "socket2 0.5.10", + "socket2 0.6.0", "static_assertions", "tokio", "tokio-uring", @@ -1966,6 +1966,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 = "spin" version = "0.5.2" diff --git a/actix-server/Cargo.toml b/actix-server/Cargo.toml index e197260e..fe8c10c3 100644 --- a/actix-server/Cargo.toml +++ b/actix-server/Cargo.toml @@ -29,7 +29,7 @@ actix-utils = "3" futures-core = { version = "0.3.17", default-features = false, features = ["alloc"] } futures-util = { version = "0.3.17", default-features = false, features = ["alloc"] } mio = { version = "1", features = ["os-poll", "net"] } -socket2 = "0.5" +socket2 = "0.6" tokio = { version = "1.44.2", features = ["sync"] } tracing = { version = "0.1.30", default-features = false, features = ["log"] }