diff --git a/Cargo.lock b/Cargo.lock index 579416ac740..b1e21a8408a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1826,9 +1826,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.12" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" +checksum = "a06fddc2749e0528d2813f95e050e87e52c8cbbae56223b9babf73b3e53b0cc6" dependencies = [ "cfg-if", "js-sys", @@ -2611,7 +2611,7 @@ dependencies = [ "either", "futures", "futures-timer", - "getrandom 0.2.12", + "getrandom 0.2.13", "instant", "libp2p-allow-block-list", "libp2p-autonat", @@ -2821,7 +2821,7 @@ dependencies = [ "fnv", "futures", "futures-ticker", - "getrandom 0.2.12", + "getrandom 0.2.13", "hex", "hex_fmt", "instant", @@ -3309,7 +3309,7 @@ dependencies = [ "fnv", "futures", "futures-timer", - "getrandom 0.2.12", + "getrandom 0.2.13", "instant", "libp2p-core", "libp2p-identify", @@ -3484,7 +3484,7 @@ version = "0.3.0-alpha" dependencies = [ "bytes", "futures", - "getrandom 0.2.12", + "getrandom 0.2.13", "hex", "js-sys", "libp2p-core", @@ -4714,7 +4714,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom 0.2.12", + "getrandom 0.2.13", ] [[package]] @@ -4804,7 +4804,7 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" dependencies = [ - "getrandom 0.2.12", + "getrandom 0.2.13", "redox_syscall 0.2.16", "thiserror", ] @@ -5004,7 +5004,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b" dependencies = [ "cc", - "getrandom 0.2.12", + "getrandom 0.2.13", "libc", "spin 0.9.8", "untrusted 0.9.0", @@ -6419,7 +6419,7 @@ version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" dependencies = [ - "getrandom 0.2.12", + "getrandom 0.2.13", ] [[package]] @@ -6836,7 +6836,7 @@ name = "webtransport-tests" version = "0.1.0" dependencies = [ "futures", - "getrandom 0.2.12", + "getrandom 0.2.13", "libp2p-core", "libp2p-identity", "libp2p-noise", diff --git a/protocols/gossipsub/Cargo.toml b/protocols/gossipsub/Cargo.toml index 22e11180439..4101a4aa4e9 100644 --- a/protocols/gossipsub/Cargo.toml +++ b/protocols/gossipsub/Cargo.toml @@ -22,7 +22,7 @@ either = "1.9" fnv = "1.0.7" futures = "0.3.30" futures-ticker = "0.0.3" -getrandom = "0.2.12" +getrandom = "0.2.13" hex_fmt = "0.3.0" instant = "0.1.12" libp2p-core = { workspace = true } diff --git a/swarm/Cargo.toml b/swarm/Cargo.toml index 3601e03d368..90aa57a4d12 100644 --- a/swarm/Cargo.toml +++ b/swarm/Cargo.toml @@ -15,7 +15,7 @@ either = "1.9.0" fnv = "1.0" futures = "0.3.30" futures-timer = "3.0.3" -getrandom = { version = "0.2.12", features = ["js"], optional = true } # Explicit dependency to be used in `wasm-bindgen` feature +getrandom = { version = "0.2.13", features = ["js"], optional = true } # Explicit dependency to be used in `wasm-bindgen` feature instant = "0.1.12" libp2p-core = { workspace = true } libp2p-identity = { workspace = true } diff --git a/transports/webrtc-websys/Cargo.toml b/transports/webrtc-websys/Cargo.toml index 12d825b2ce7..0099851f4d5 100644 --- a/transports/webrtc-websys/Cargo.toml +++ b/transports/webrtc-websys/Cargo.toml @@ -14,7 +14,7 @@ publish = true [dependencies] bytes = "1" futures = "0.3" -getrandom = { version = "0.2.12", features = ["js"] } +getrandom = { version = "0.2.13", features = ["js"] } hex = "0.4.3" js-sys = { version = "0.3" } libp2p-core = { workspace = true } diff --git a/wasm-tests/webtransport-tests/Cargo.toml b/wasm-tests/webtransport-tests/Cargo.toml index 8b0cb85c3be..11b85910833 100644 --- a/wasm-tests/webtransport-tests/Cargo.toml +++ b/wasm-tests/webtransport-tests/Cargo.toml @@ -10,7 +10,7 @@ release = false [dependencies] futures = "0.3.30" -getrandom = { version = "0.2.12", features = ["js"] } +getrandom = { version = "0.2.13", features = ["js"] } libp2p-core = { workspace = true } libp2p-identity = { workspace = true, features = ["rand"] } libp2p-noise = { workspace = true }