tlib.rs - wasm-runtime - A wasm runtime
HTML git clone https://git.parazyd.org/wasm-runtime
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
tlib.rs (201B)
---
1 pub mod entrypoint;
2 pub mod error;
3 pub mod log;
4
5 // Set up global allocator by default
6 #[cfg(target_arch = "wasm32")]
7 #[global_allocator]
8 static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;