Update tiny-bip39 to v0.8 (#7539)

It would improve secret zeroization due to
https://github.com/maciejhirsz/tiny-bip39/pull/22, and would also remove
one of the points where we depend on `failure` crate, which is
deprecated (see https://github.com/rust-lang-nursery/failure/pull/347)
This commit is contained in:
Kirill Pimenov
2020-11-14 07:19:26 +01:00
committed by GitHub
parent 80830d2e1d
commit 4f77408a39
2 changed files with 43 additions and 22 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ hash256-std-hasher = { version = "0.15.2", default-features = false }
base58 = { version = "0.1.0", optional = true }
rand = { version = "0.7.3", optional = true, features = ["small_rng"] }
substrate-bip39 = { version = "0.4.2", optional = true }
tiny-bip39 = { version = "0.7", optional = true }
tiny-bip39 = { version = "0.8", optional = true }
regex = { version = "1.3.1", optional = true }
num-traits = { version = "0.2.8", default-features = false }
zeroize = { version = "1.0.0", default-features = false }