deps: bump socket2 from 0.4.9 to 0.5.2

Pull-Request: #3873.
This commit is contained in:
dependabot[bot]
2023-05-03 09:00:15 +00:00
committed by GitHub
parent 8acbabdaf6
commit 30d0f598ef
3 changed files with 21 additions and 11 deletions

28
Cargo.lock generated
View File

@ -354,7 +354,7 @@ dependencies = [
"polling", "polling",
"rustix", "rustix",
"slab", "slab",
"socket2", "socket2 0.4.9",
"waker-fn", "waker-fn",
] ]
@ -437,7 +437,7 @@ dependencies = [
"futures-io", "futures-io",
"futures-util", "futures-util",
"pin-utils", "pin-utils",
"socket2", "socket2 0.4.9",
"trust-dns-resolver", "trust-dns-resolver",
] ]
@ -1991,7 +1991,7 @@ dependencies = [
"httpdate", "httpdate",
"itoa", "itoa",
"pin-project-lite 0.2.9", "pin-project-lite 0.2.9",
"socket2", "socket2 0.4.9",
"tokio", "tokio",
"tower-service", "tower-service",
"tracing", "tracing",
@ -2149,7 +2149,7 @@ version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd302af1b90f2463a98fa5ad469fc212c8e3175a41c3068601bfa2727591c5be" checksum = "bd302af1b90f2463a98fa5ad469fc212c8e3175a41c3068601bfa2727591c5be"
dependencies = [ dependencies = [
"socket2", "socket2 0.4.9",
"widestring", "widestring",
"winapi", "winapi",
"winreg", "winreg",
@ -2626,7 +2626,7 @@ dependencies = [
"log", "log",
"rand 0.8.5", "rand 0.8.5",
"smallvec", "smallvec",
"socket2", "socket2 0.5.2",
"tokio", "tokio",
"trust-dns-proto", "trust-dns-proto",
"void", "void",
@ -2966,7 +2966,7 @@ dependencies = [
"libp2p-core", "libp2p-core",
"libp2p-identity", "libp2p-identity",
"log", "log",
"socket2", "socket2 0.5.2",
"tokio", "tokio",
] ]
@ -4669,6 +4669,16 @@ dependencies = [
"winapi", "winapi",
] ]
[[package]]
name = "socket2"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d283f86695ae989d1e18440a943880967156325ba025f05049946bff47bcc2b"
dependencies = [
"libc",
"windows-sys 0.48.0",
]
[[package]] [[package]]
name = "soketto" name = "soketto"
version = "0.7.1" version = "0.7.1"
@ -4922,7 +4932,7 @@ dependencies = [
"parking_lot 0.12.1", "parking_lot 0.12.1",
"pin-project-lite 0.2.9", "pin-project-lite 0.2.9",
"signal-hook-registry", "signal-hook-registry",
"socket2", "socket2 0.4.9",
"tokio-macros", "tokio-macros",
"windows-sys 0.48.0", "windows-sys 0.48.0",
] ]
@ -5034,7 +5044,7 @@ dependencies = [
"rustls 0.20.8", "rustls 0.20.8",
"rustls-pemfile", "rustls-pemfile",
"smallvec", "smallvec",
"socket2", "socket2 0.4.9",
"thiserror", "thiserror",
"tinyvec", "tinyvec",
"tokio", "tokio",
@ -5525,7 +5535,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f08dfd7a6e3987e255c4dbe710dde5d94d0f0574f8a21afa95d171376c143106" checksum = "f08dfd7a6e3987e255c4dbe710dde5d94d0f0574f8a21afa95d171376c143106"
dependencies = [ dependencies = [
"log", "log",
"socket2", "socket2 0.4.9",
"thiserror", "thiserror",
"tokio", "tokio",
"webrtc-util", "webrtc-util",

View File

@ -21,7 +21,7 @@ libp2p-identity = { workspace = true }
log = "0.4.14" log = "0.4.14"
rand = "0.8.3" rand = "0.8.3"
smallvec = "1.6.1" smallvec = "1.6.1"
socket2 = { version = "0.4.0", features = ["all"] } socket2 = { version = "0.5.2", features = ["all"] }
tokio = { version = "1.28", default-features = false, features = ["net", "time"], optional = true} tokio = { version = "1.28", default-features = false, features = ["net", "time"], optional = true}
trust-dns-proto = { version = "0.22.0", default-features = false, features = ["mdns", "tokio-runtime"] } trust-dns-proto = { version = "0.22.0", default-features = false, features = ["mdns", "tokio-runtime"] }
void = "1.0.2" void = "1.0.2"

View File

@ -19,7 +19,7 @@ libc = "0.2.142"
libp2p-core = { workspace = true } libp2p-core = { workspace = true }
libp2p-identity = { workspace = true } libp2p-identity = { workspace = true }
log = "0.4.11" log = "0.4.11"
socket2 = { version = "0.4.0", features = ["all"] } socket2 = { version = "0.5.2", features = ["all"] }
tokio = { version = "1.28.0", default-features = false, features = ["net"], optional = true } tokio = { version = "1.28.0", default-features = false, features = ["net"], optional = true }
[features] [features]