diff --git a/Cargo.lock b/Cargo.lock index b90f383bec5..e82f35638bc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4053,18 +4053,18 @@ checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" [[package]] name = "pin-project" -version = "1.1.2" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "030ad2bc4db10a8944cb0d837f158bdfec4d4a4873ab701a95046770d11f8842" +checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.2" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec2e072ecce94ec471b13398d5402c188e76ac03cf74dd1a975161b23a3f6d9c" +checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" dependencies = [ "proc-macro2", "quote", @@ -4527,9 +4527,9 @@ dependencies = [ [[package]] name = "redis" -version = "0.23.1" +version = "0.23.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff5d95dd18a4d76650f0c2607ed8ebdbf63baf9cb934e1c233cd220c694db1d7" +checksum = "ffd6543a7bc6428396845f6854ccf3d1ae8823816592e2cbe74f20f50f209d02" dependencies = [ "async-trait", "bytes", @@ -5487,9 +5487,9 @@ dependencies = [ [[package]] name = "sysinfo" -version = "0.29.7" +version = "0.29.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "165d6d8539689e3d3bc8b98ac59541e1f21c7de7c85d60dc80e43ae0ed2113db" +checksum = "d10ed79c22663a35a255d289a7fdcb43559fc77ff15df5ce6c341809e7867528" dependencies = [ "cfg-if 1.0.0", "core-foundation-sys", diff --git a/core/Cargo.toml b/core/Cargo.toml index 34da753ea0a..e71c4d0f243 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -23,7 +23,7 @@ multihash = { workspace = true } multistream-select = { workspace = true } once_cell = "1.18.0" parking_lot = "0.12.0" -pin-project = "1.1.2" +pin-project = "1.1.3" quick-protobuf = "0.8" rand = "0.8" rw-stream-sink = { workspace = true } diff --git a/interop-tests/Cargo.toml b/interop-tests/Cargo.toml index 1c9ef732e7c..861bf14e2b4 100644 --- a/interop-tests/Cargo.toml +++ b/interop-tests/Cargo.toml @@ -23,7 +23,7 @@ libp2p = { path = "../libp2p", features = ["ping", "noise", "tls", "rsa", "macro libp2p-webrtc = { workspace = true, features = ["tokio"] } libp2p-mplex = { path = "../muxers/mplex" } mime_guess = "2.0" -redis = { version = "0.23.0", default-features = false, features = ["tokio-comp"] } +redis = { version = "0.23.2", default-features = false, features = ["tokio-comp"] } rust-embed = "6.8" serde_json = "1" thirtyfour = "=0.32.0-rc.8" # https://github.com/stevepryde/thirtyfour/issues/169 diff --git a/misc/multistream-select/Cargo.toml b/misc/multistream-select/Cargo.toml index c47c4c0788d..711a80145e1 100644 --- a/misc/multistream-select/Cargo.toml +++ b/misc/multistream-select/Cargo.toml @@ -14,7 +14,7 @@ categories = ["network-programming", "asynchronous"] bytes = "1" futures = "0.3" log = "0.4" -pin-project = "1.1.2" +pin-project = "1.1.3" smallvec = "1.11.0" unsigned-varint = "0.7" diff --git a/misc/rw-stream-sink/Cargo.toml b/misc/rw-stream-sink/Cargo.toml index e1886c5f1c8..b6d02c28201 100644 --- a/misc/rw-stream-sink/Cargo.toml +++ b/misc/rw-stream-sink/Cargo.toml @@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"] [dependencies] futures = "0.3.28" -pin-project = "1.1.2" +pin-project = "1.1.3" static_assertions = "1" [dev-dependencies] diff --git a/transports/pnet/Cargo.toml b/transports/pnet/Cargo.toml index 831b3f599e7..597709c5330 100644 --- a/transports/pnet/Cargo.toml +++ b/transports/pnet/Cargo.toml @@ -16,7 +16,7 @@ log = "0.4.20" salsa20 = "0.10" sha3 = "0.10" rand = "0.8" -pin-project = "1.1.2" +pin-project = "1.1.3" [dev-dependencies] libp2p-core = { workspace = true }