Skip to main content

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_scheme;
10pub use auth_scheme::AuthScheme;
11
12pub mod account;
13pub mod code_builder;
14pub mod errors;
15pub mod note;
16mod standards_lib;
17
18pub use standards_lib::StandardsLib;
19
20#[cfg(any(feature = "testing", test))]
21pub mod testing;