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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 12 additions and 2 deletions

12
Cargo.lock generated
View File

@ -55,7 +55,7 @@ dependencies = [
"futures-util", "futures-util",
"mio", "mio",
"pretty_env_logger", "pretty_env_logger",
"socket2 0.5.10", "socket2 0.6.0",
"static_assertions", "static_assertions",
"tokio", "tokio",
"tokio-uring", "tokio-uring",
@ -1966,6 +1966,16 @@ dependencies = [
"windows-sys 0.52.0", "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]] [[package]]
name = "spin" name = "spin"
version = "0.5.2" 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-core = { version = "0.3.17", default-features = false, features = ["alloc"] }
futures-util = { 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"] } mio = { version = "1", features = ["os-poll", "net"] }
socket2 = "0.5" socket2 = "0.6"
tokio = { version = "1.44.2", features = ["sync"] } tokio = { version = "1.44.2", features = ["sync"] }
tracing = { version = "0.1.30", default-features = false, features = ["log"] } tracing = { version = "0.1.30", default-features = false, features = ["log"] }