Skip to main content

airbender_guest/
lib.rs

1#![doc = include_str!("../README.md")]
2#![no_std]
3
4extern crate alloc;
5
6#[cfg(test)]
7extern crate std;
8
9pub mod commit;
10pub mod cycle;
11pub mod input;
12pub mod transport;
13
14pub use commit::{commit, exit_error, Commit};
15pub use cycle::{marker as cycle_marker, record_cycles};
16pub use input::{read, read_with, GuestError};
17pub use transport::{CsrTransport, MockTransport, Transport};