1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
#![cfg_attr(not(feature = "std"), no_std)] #![feature(alloc)] #![feature(nll)] #![feature(core_intrinsics)] #[cfg(not(feature = "std"))] #[macro_use] extern crate alloc; extern crate serde; #[macro_use] extern crate serde_derive; #[cfg(not(feature = "std"))] extern crate bincode_no_std; #[cfg(not(feature = "std"))] use bincode_no_std as bincode; #[cfg(feature = "std")] extern crate bincode; #[cfg(feature = "std")] mod prelude; #[cfg(not(feature = "std"))] mod prelude_no_std; #[cfg(not(feature = "std"))] use prelude_no_std as prelude; pub mod opcode; pub mod executor; pub mod module; pub mod int_ops; pub mod value; pub mod resolver;