diff --git a/Cargo.lock b/Cargo.lock index 10fb84432..0557ab62c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -67,7 +67,7 @@ version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd" dependencies = [ - "getrandom 0.2.11", + "getrandom 0.2.12", "once_cell", "version_check", ] @@ -1728,7 +1728,7 @@ dependencies = [ "criterion_bencher_compat", "exocore-protos", "futures", - "getrandom 0.2.11", + "getrandom 0.2.12", "libp2p", "libp2p-identity", "log", @@ -2191,9 +2191,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.11" +version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" +checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" dependencies = [ "cfg-if", "js-sys", @@ -2795,7 +2795,7 @@ dependencies = [ "either", "futures", "futures-timer", - "getrandom 0.2.11", + "getrandom 0.2.12", "instant", "libp2p-allow-block-list", "libp2p-connection-limits", @@ -2903,7 +2903,7 @@ dependencies = [ "fnv", "futures", "futures-ticker", - "getrandom 0.2.11", + "getrandom 0.2.12", "hex_fmt", "instant", "libp2p-core", @@ -3097,7 +3097,7 @@ dependencies = [ "fnv", "futures", "futures-timer", - "getrandom 0.2.11", + "getrandom 0.2.12", "instant", "libp2p-core", "libp2p-identity", @@ -4439,7 +4439,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom 0.2.11", + "getrandom 0.2.12", ] [[package]] @@ -4507,7 +4507,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" dependencies = [ - "getrandom 0.2.11", + "getrandom 0.2.12", "libredox", "thiserror", ] @@ -4640,7 +4640,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" dependencies = [ "cc", - "getrandom 0.2.11", + "getrandom 0.2.12", "libc", "spin 0.9.8", "untrusted 0.9.0", @@ -5833,7 +5833,7 @@ version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" dependencies = [ - "getrandom 0.2.11", + "getrandom 0.2.12", "serde", "wasm-bindgen", ] diff --git a/core/Cargo.toml b/core/Cargo.toml index 0d538857b..6d48aea5a 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -58,7 +58,7 @@ wasm-timer = "0.2.5" web-sys = { version = "0.3.66", features = ["Storage"], optional = true } [target."cfg(target_arch = \"wasm32\")".dependencies] -getrandom = "0.2.11" +getrandom = "0.2.12" wasm-bindgen = "0.2.89" wasm-bindgen-futures = "0.4.39" chrono = { version = "0.4.31", default-features = false, features = [] }