Files
wasmtime/crates/wasi-c2/src/lib.rs
2020-12-10 15:07:18 -08:00

12 lines
181 B
Rust

#![cfg_attr(feature = "nightly", feature(windows_by_handle))]
mod ctx;
mod dir;
mod error;
mod file;
pub mod snapshots;
pub mod table;
pub use ctx::WasiCtx;
pub use error::Error;