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 interop;
13pub mod note;
14mod standards_lib;
15pub mod tx_script;
16pub mod utils;
17
18pub use standards_lib::StandardsLib;
19
20#[cfg(any(feature = "testing", test))]
21pub mod testing;