summaryrefslogtreecommitdiffstats
path: root/third_party/rust/lucet-wasi-wasmsbx/src/lib.rs
blob: 2c3a5f067527c4481c6b36f8a5cc818a8b06976b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![deny(bare_trait_objects)]

mod bindings;
pub mod c_api;
pub mod ctx;
pub mod fdentry;
pub mod host;
pub mod hostcalls;
pub mod memory;
pub mod wasm32;

pub use bindings::bindings;
pub use ctx::{WasiCtx, WasiCtxBuilder};

#[macro_use]
extern crate lazy_static;