1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-08-21 15:05:37 +02:00

Update to socket2 v0.6 (#696)

This commit is contained in:
Thomas de Zeeuw
2025-07-14 03:13:23 +02:00
committed by GitHub
parent 21de88385e
commit e6ddf0ccff
2 changed files with 12 additions and 2 deletions

12
Cargo.lock generated
View File

@@ -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"

View File

@@ -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"] }