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