Merge branch 'master' into feature/compile-and-run-nginx-wasm

# Conflicts:
#	src/bin/wasmer.rs
#	src/recovery.rs
This commit is contained in:
Syrus Akbary
2018-11-27 23:47:13 -08:00
12 changed files with 5250 additions and 62 deletions

29
src/lib.rs Normal file
View File

@ -0,0 +1,29 @@
#[macro_use]
extern crate error_chain;
extern crate cranelift_codegen;
extern crate cranelift_entity;
extern crate cranelift_native;
extern crate cranelift_wasm;
extern crate libc;
extern crate memmap;
extern crate region;
extern crate structopt;
extern crate wabt;
extern crate wasmparser;
#[macro_use]
extern crate target_lexicon;
extern crate byteorder;
pub extern crate nix; // re-exported for usage in macros
extern crate rayon;
#[macro_use]
mod macros;
#[macro_use]
pub mod recovery;
pub mod apis;
pub mod common;
pub mod sighandler;
#[cfg(test)]
mod spectests;
pub mod webassembly;
pub mod update;