Refactored memory usage to use impl-abstract mmap

This commit is contained in:
Syrus
2018-12-14 17:32:35 -08:00
parent a2bcdb658f
commit fd5554c3bd
9 changed files with 285 additions and 66 deletions

View File

@ -5,7 +5,6 @@ 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;
@ -17,6 +16,8 @@ pub extern crate nix; // re-exported for usage in macros
extern crate rayon;
extern crate indicatif;
extern crate console;
#[cfg(windows)]
extern crate winapi;
#[macro_use]
mod macros;