From 43ba8840c9f052fbf38cb86ff83a1749b6ec6a2b Mon Sep 17 00:00:00 2001 From: Giles Cope Date: Tue, 12 Oct 2021 11:07:06 +0100 Subject: [PATCH 1/3] updated deps --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c69cb16..41ccfb9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,12 +9,12 @@ documentation = "https://docs.rs/substrate-bip39" repository = "https://github.com/paritytech/substrate-bip39" [dependencies] -pbkdf2 = { version = "0.8.0", default-features = false } -sha2 = "0.9.5" +pbkdf2 = { version = "0.9.0", default-features = false } +sha2 = "0.9.8" hmac = "0.11.0" -schnorrkel = "0.9.1" -zeroize = { version = "1.0.0", default-features = false } +schnorrkel = "0.10.1" +zeroize = { version = "1.4.2", default-features = false } [dev-dependencies] -tiny-bip39 = "0.8.0" +tiny-bip39 = "0.8.2" rustc-hex = "2.1.0" From 9e993615111cde1866b4fdcc62afddb03aa4a7ca Mon Sep 17 00:00:00 2001 From: gilescope Date: Thu, 14 Oct 2021 08:41:06 +0100 Subject: [PATCH 2/3] Point to potential schnorrkle version --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 41ccfb9..e1f8d3d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ repository = "https://github.com/paritytech/substrate-bip39" pbkdf2 = { version = "0.9.0", default-features = false } sha2 = "0.9.8" hmac = "0.11.0" -schnorrkel = "0.10.1" +schnorrkel = { git = "https://github.com/gilescope/schnorrkel.git", rev="9d131c87d6fee37613727ac3d007a52c40bd3715" } zeroize = { version = "1.4.2", default-features = false } [dev-dependencies] From fa1b4af0d063d83cead8d689da3f9373f8f9ff7f Mon Sep 17 00:00:00 2001 From: Giles Cope Date: Mon, 18 Oct 2021 11:50:57 +0100 Subject: [PATCH 3/3] upgrade schnorrkel --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e1f8d3d..aa1fce6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ repository = "https://github.com/paritytech/substrate-bip39" pbkdf2 = { version = "0.9.0", default-features = false } sha2 = "0.9.8" hmac = "0.11.0" -schnorrkel = { git = "https://github.com/gilescope/schnorrkel.git", rev="9d131c87d6fee37613727ac3d007a52c40bd3715" } +schnorrkel = "0.10.2" zeroize = { version = "1.4.2", default-features = false } [dev-dependencies]