summaryrefslogtreecommitdiffstats
path: root/third_party/rust/lucet-wasi-wasmsbx/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/lucet-wasi-wasmsbx/src/lib.rs')
-rw-r--r--third_party/rust/lucet-wasi-wasmsbx/src/lib.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/third_party/rust/lucet-wasi-wasmsbx/src/lib.rs b/third_party/rust/lucet-wasi-wasmsbx/src/lib.rs
new file mode 100644
index 0000000000..2c3a5f0675
--- /dev/null
+++ b/third_party/rust/lucet-wasi-wasmsbx/src/lib.rs
@@ -0,0 +1,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; \ No newline at end of file