ZIP 339 support.

Signed-off-by: Daira Hopwood <daira@jacaranda.org>
This commit is contained in:
Daira Hopwood 2021-08-07 01:07:54 +01:00
parent 1a40fc9ac8
commit d1443e5049
3 changed files with 7 additions and 0 deletions

View File

@ -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"

View File

@ -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;

View File

@ -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};