1#![cfg_attr(not(feature = "std"), no_std)]
12
13#[cfg(feature = "alloc")]
14extern crate alloc;
15
16#[cfg(feature = "alloc")]
17mod derivation_style;
18#[cfg(feature = "alloc")]
19mod deriver;
20mod error;
21#[cfg(feature = "alloc")]
22mod slip10;
23#[cfg(feature = "alloc")]
24mod standard_wallet;
25
26#[cfg(feature = "alloc")]
27pub use derivation_style::{DerivationStyle, ParseDerivationStyleError};
28#[cfg(feature = "alloc")]
29pub use deriver::{DerivedAddress, Deriver};
30pub use error::Error;
31#[cfg(feature = "alloc")]
32pub use standard_wallet::StandardWallet;
33
34pub type Result<T> = core::result::Result<T, Error>;