ZIP 339 support.
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
This commit is contained in:
parent
1a40fc9ac8
commit
d1443e5049
|
@ -18,6 +18,7 @@ all-features = true
|
|||
[dependencies]
|
||||
aes = "0.6"
|
||||
bitvec = "0.22"
|
||||
bip0039 = { version = "0.8.0", features = ["std", "all-languages"] }
|
||||
blake2b_simd = "0.5"
|
||||
blake2s_simd = "0.5"
|
||||
bls12_381 = "0.5"
|
||||
|
|
|
@ -19,6 +19,7 @@ pub mod sapling;
|
|||
pub mod serialize;
|
||||
pub mod transaction;
|
||||
pub mod zip32;
|
||||
pub mod zip339;
|
||||
|
||||
#[cfg(feature = "zfuture")]
|
||||
pub mod extensions;
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
//! [ZIP 339] for seed phrase support.
|
||||
//!
|
||||
//! [ZIP 339]: https://zips.z.cash/zip-0339
|
||||
|
||||
pub use bip0039::{Count, Error, Language, Mnemonic};
|
Loading…
Reference in New Issue