Skip to main content

airbender/
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 codec {
10    pub use airbender_codec::*;
11}
12
13#[cfg(feature = "crypto")]
14pub mod crypto {
15    pub use airbender_crypto::*;
16}
17
18pub mod guest {
19    pub use airbender_guest::*;
20}
21
22pub mod rt {
23    pub use airbender_rt::*;
24}
25
26pub use airbender_macros::main;