miden-standards 0.16.0-alpha.3

Standards of the Miden protocol
Documentation
#![no_std]

#[macro_use]
extern crate alloc;

#[cfg(feature = "std")]
extern crate std;

pub mod account;
pub mod code_builder;
pub mod errors;
pub mod note;
mod standards_lib;
pub mod tx_script;
pub mod utils;

pub use standards_lib::StandardsLib;

#[cfg(any(feature = "testing", test))]
pub mod testing;