From 157eea989322eed2ea9553d3640e884fb657541a Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Tue, 14 Feb 2023 17:39:28 +0100 Subject: [PATCH] lib: re-export the bip39 dependency --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 704831c8..8b1cc4c5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,6 +12,7 @@ pub mod signer; #[cfg(test)] mod testutils; +pub use bip39; pub use miniscript; pub use crate::bitcoin::d::{BitcoindError, WalletError};