diff --git a/Cargo.lock b/Cargo.lock index 977f34d3..bed7582a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2527,7 +2527,7 @@ dependencies = [ "rand 0.8.5", "regex", "serde", - "sha2 0.10.6", + "sha2 0.10.7", "smallvec", "unsigned-varint", "void", @@ -2578,7 +2578,7 @@ dependencies = [ "sec1 0.7.2", "serde", "serde_json", - "sha2 0.10.6", + "sha2 0.10.7", "thiserror", "void", "zeroize", @@ -2610,7 +2610,7 @@ dependencies = [ "quickcheck-ext", "rand 0.8.5", "serde", - "sha2 0.10.6", + "sha2 0.10.7", "smallvec", "thiserror", "uint", @@ -2715,7 +2715,7 @@ dependencies = [ "quick-protobuf", "quickcheck-ext", "rand 0.8.5", - "sha2 0.10.6", + "sha2 0.10.7", "snow", "static_assertions", "thiserror", @@ -3073,7 +3073,7 @@ dependencies = [ "rand 0.8.5", "rcgen 0.9.3", "serde", - "sha2 0.10.6", + "sha2 0.10.7", "stun", "thiserror", "tinytemplate", @@ -3541,7 +3541,7 @@ checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594" dependencies = [ "ecdsa 0.14.8", "elliptic-curve 0.12.3", - "sha2 0.10.6", + "sha2 0.10.7", ] [[package]] @@ -3553,7 +3553,7 @@ dependencies = [ "ecdsa 0.16.7", "elliptic-curve 0.13.5", "primeorder", - "sha2 0.10.6", + "sha2 0.10.7", ] [[package]] @@ -3564,7 +3564,7 @@ checksum = "dfc8c5bf642dde52bb9e87c0ecd8ca5a76faac2eeed98dedb7c717997e1080aa" dependencies = [ "ecdsa 0.14.8", "elliptic-curve 0.12.3", - "sha2 0.10.6", + "sha2 0.10.7", ] [[package]] @@ -4537,9 +4537,9 @@ dependencies = [ [[package]] name = "sha2" -version = "0.10.6" +version = "0.10.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" +checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" dependencies = [ "cfg-if", "cpufeatures", @@ -4640,7 +4640,7 @@ dependencies = [ "rand_core 0.6.4", "ring", "rustc_version", - "sha2 0.10.6", + "sha2 0.10.7", "subtle", ] @@ -5402,7 +5402,7 @@ dependencies = [ "sdp", "serde", "serde_json", - "sha2 0.10.6", + "sha2 0.10.7", "stun", "thiserror", "time", @@ -5466,7 +5466,7 @@ dependencies = [ "sec1 0.3.0", "serde", "sha1", - "sha2 0.10.6", + "sha2 0.10.7", "signature 1.6.4", "subtle", "thiserror", diff --git a/identity/Cargo.toml b/identity/Cargo.toml index ca987c6b..3ebefb7e 100644 --- a/identity/Cargo.toml +++ b/identity/Cargo.toml @@ -23,7 +23,7 @@ quick-protobuf = "0.8.1" rand = { version = "0.8", optional = true } sec1 = { version = "0.7", default-features = false, optional = true } serde = { version = "1", optional = true, features = ["derive"] } -sha2 = { version = "0.10.0", optional = true } +sha2 = { version = "0.10.7", optional = true } thiserror = { version = "1.0", optional = true } void = { version = "1.0", optional = true } zeroize = { version = "1.6", optional = true } diff --git a/protocols/gossipsub/Cargo.toml b/protocols/gossipsub/Cargo.toml index c0d59f11..5b4a5e54 100644 --- a/protocols/gossipsub/Cargo.toml +++ b/protocols/gossipsub/Cargo.toml @@ -34,7 +34,7 @@ quick-protobuf-codec = { workspace = true } rand = "0.8" regex = "1.8.3" serde = { version = "1", optional = true, features = ["derive"] } -sha2 = "0.10.0" +sha2 = "0.10.7" smallvec = "1.6.1" unsigned-varint = { version = "0.7.0", features = ["asynchronous_codec"] } void = "1.0.2" diff --git a/protocols/kad/Cargo.toml b/protocols/kad/Cargo.toml index d98f2156..042a28b2 100644 --- a/protocols/kad/Cargo.toml +++ b/protocols/kad/Cargo.toml @@ -23,7 +23,7 @@ libp2p-swarm = { workspace = true } quick-protobuf = "0.8" libp2p-identity = { workspace = true } rand = "0.8" -sha2 = "0.10.0" +sha2 = "0.10.7" smallvec = "1.6.1" uint = "0.9" unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] } diff --git a/transports/noise/Cargo.toml b/transports/noise/Cargo.toml index 397d8771..484d9a37 100644 --- a/transports/noise/Cargo.toml +++ b/transports/noise/Cargo.toml @@ -20,7 +20,7 @@ multihash = { workspace = true } once_cell = "1.18.0" quick-protobuf = "0.8" rand = "0.8.3" -sha2 = "0.10.0" +sha2 = "0.10.7" static_assertions = "1" thiserror = "1.0.40" x25519-dalek = "1.1.0" diff --git a/transports/webrtc/Cargo.toml b/transports/webrtc/Cargo.toml index e4e24b42..e63003fc 100644 --- a/transports/webrtc/Cargo.toml +++ b/transports/webrtc/Cargo.toml @@ -22,7 +22,7 @@ libp2p-core = { workspace = true } libp2p-noise = { workspace = true } libp2p-identity = { workspace = true } log = "0.4" -sha2 = "0.10.6" +sha2 = "0.10.7" multihash = { workspace = true } quick-protobuf = "0.8" quick-protobuf-codec = { workspace = true }