miden_testing/lib.rs
1#![no_std]
2
3#[macro_use]
4extern crate alloc;
5
6#[cfg(any(feature = "std", test))]
7extern crate std;
8
9mod mock_chain;
10pub use mock_chain::{
11 AccountState,
12 Auth,
13 MockChain,
14 MockChainBuilder,
15 MockChainNote,
16 TxContextInput,
17};
18
19mod tx_context;
20pub use tx_context::{TransactionContext, TransactionContextBuilder};
21
22pub mod executor;
23
24mod mock_host;
25
26pub mod utils;
27
28#[cfg(test)]
29mod kernel_tests;
30
31#[cfg(test)]
32mod standards;