miden_standards/lib.rs
1#![no_std]
2
3#[macro_use]
4extern crate alloc;
5
6#[cfg(feature = "std")]
7extern crate std;
8
9pub mod account;
10pub mod code_builder;
11pub mod errors;
12pub mod note;
13mod standards_lib;
14pub mod tx_script;
15pub mod utils;
16
17pub use standards_lib::StandardsLib;
18
19#[cfg(any(feature = "testing", test))]
20pub mod testing;