2018-11-28 13:15:33 +08:00
|
|
|
extern crate cranelift_codegen;
|
|
|
|
extern crate cranelift_entity;
|
|
|
|
extern crate cranelift_native;
|
|
|
|
extern crate cranelift_wasm;
|
|
|
|
extern crate libc;
|
|
|
|
extern crate region;
|
|
|
|
extern crate structopt;
|
|
|
|
extern crate wabt;
|
2019-01-09 00:49:11 -06:00
|
|
|
extern crate wasmer_clif_backend;
|
|
|
|
extern crate wasmer_runtime;
|
2019-01-17 17:43:58 -08:00
|
|
|
extern crate wasmparser;
|
|
|
|
// extern crate wasmer_emscripten;
|
2018-11-27 23:47:13 -08:00
|
|
|
extern crate byteorder;
|
2018-12-15 00:46:11 -06:00
|
|
|
extern crate console;
|
2018-12-26 16:55:11 -05:00
|
|
|
#[cfg_attr(test, macro_use)]
|
|
|
|
extern crate field_offset;
|
2018-12-15 00:46:11 -06:00
|
|
|
extern crate indicatif;
|
2018-11-28 13:15:33 +08:00
|
|
|
pub extern crate nix; // re-exported for usage in macros
|
|
|
|
extern crate rayon;
|
2018-12-14 17:32:35 -08:00
|
|
|
#[cfg(windows)]
|
|
|
|
extern crate winapi;
|
2018-11-28 13:15:33 +08:00
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
mod macros;
|
|
|
|
#[macro_use]
|
|
|
|
pub mod recovery;
|
|
|
|
pub mod common;
|
|
|
|
pub mod sighandler;
|
2018-11-27 21:53:33 -08:00
|
|
|
pub mod update;
|
2018-11-28 13:25:56 -08:00
|
|
|
pub mod webassembly;
|