diff --git a/Cargo.lock b/Cargo.lock index 7d024107f1..d12e3ad466 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -36,6 +36,16 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" +[[package]] +name = "aead" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" +dependencies = [ + "crypto-common", + "generic-array 0.14.7", +] + [[package]] name = "ahash" version = "0.7.7" @@ -1140,6 +1150,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" dependencies = [ "generic-array 0.14.7", + "rand_core 0.6.4", "typenum", ] @@ -1787,6 +1798,16 @@ dependencies = [ "wasm-bindgen", ] +[[package]] +name = "getrandom_or_panic" +version = "0.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ea1015b5a70616b688dc230cfe50c8af89d972cb132d5a622814d29773b10b9" +dependencies = [ + "rand 0.8.5", + "rand_core 0.6.4", +] + [[package]] name = "gimli" version = "0.27.3" @@ -3564,15 +3585,16 @@ dependencies = [ [[package]] name = "schnorrkel" -version = "0.11.3" +version = "0.11.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da18ffd9f2f5d01bc0b3050b37ce7728665f926b4dd1157fe3221b05737d924f" +checksum = "8de18f6d8ba0aad7045f5feae07ec29899c1112584a38509a84ad7b04451eaa0" dependencies = [ + "aead", "arrayref", "arrayvec 0.7.4", "curve25519-dalek 4.1.1", + "getrandom_or_panic", "merlin 3.0.0", - "rand 0.8.5", "rand_core 0.6.4", "serde_bytes", "sha2 0.10.8", @@ -3886,7 +3908,7 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "ruzstd", - "schnorrkel 0.11.3", + "schnorrkel 0.11.4", "serde", "serde_json", "sha2 0.10.8", @@ -4553,7 +4575,7 @@ dependencies = [ "parity-scale-codec", "pbkdf2 0.12.2", "regex", - "schnorrkel 0.11.3", + "schnorrkel 0.11.4", "secp256k1 0.28.0", "secrecy", "sha2 0.10.8", diff --git a/Cargo.toml b/Cargo.toml index 34cd6a2517..8a38a66005 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -138,7 +138,7 @@ substrate-runner = { path = "testing/substrate-runner" } bip39 = "2.0.0" hmac = "0.12.1" pbkdf2 = { version = "0.12.2", default-features = false } -schnorrkel = "0.11.3" +schnorrkel = "0.11.4" secp256k1 = "0.28.0" secrecy = "0.8.0" sha2 = "0.10.8"