wasm-runtime

A wasm runtime
git clone https://git.parazyd.org/wasm-runtime
Log | Files | Refs | README | LICENSE

lib.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;