Update tiny-bip39 dependency to one implementing zeroize (#1701)
## Issue Addressed Resolves #1130 ## Proposed Changes Use the sigp fork of tiny-bip39, which includes `Zeroize` for `Mnemonic` and `Seed` ## Additional Info N/A
This commit is contained in:
parent
255cc25623
commit
17c5da478e
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -5529,8 +5529,7 @@ dependencies = [
|
|||||||
[[package]]
|
[[package]]
|
||||||
name = "tiny-bip39"
|
name = "tiny-bip39"
|
||||||
version = "0.7.3"
|
version = "0.7.3"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "git+https://github.com/sigp/tiny-bip39.git?rev=1137c32da91bd5e75db4305a84ddd15255423f7f#1137c32da91bd5e75db4305a84ddd15255423f7f"
|
||||||
checksum = "b0165e045cc2ae1660270ca65e1676dbaab60feb0f91b10f7d0665e9b47e31f2"
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"failure",
|
"failure",
|
||||||
"hmac 0.7.1",
|
"hmac 0.7.1",
|
||||||
@ -5540,6 +5539,7 @@ dependencies = [
|
|||||||
"rustc-hash",
|
"rustc-hash",
|
||||||
"sha2 0.8.2",
|
"sha2 0.8.2",
|
||||||
"unicode-normalization",
|
"unicode-normalization",
|
||||||
|
"zeroize",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
@ -14,7 +14,7 @@ uuid = { version = "0.8", features = ["serde", "v4"] }
|
|||||||
rand = "0.7.2"
|
rand = "0.7.2"
|
||||||
eth2_keystore = { path = "../eth2_keystore" }
|
eth2_keystore = { path = "../eth2_keystore" }
|
||||||
eth2_key_derivation = { path = "../eth2_key_derivation" }
|
eth2_key_derivation = { path = "../eth2_key_derivation" }
|
||||||
tiny-bip39 = "0.7.3"
|
tiny-bip39 = { git = "https://github.com/sigp/tiny-bip39.git", rev = "1137c32da91bd5e75db4305a84ddd15255423f7f" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
hex = "0.4.2"
|
hex = "0.4.2"
|
||||||
|
Loading…
Reference in New Issue
Block a user