diff --git a/Cargo.toml b/Cargo.toml index 3938432..d5d6700 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,11 @@ description = "WebAssembly interpreter" keywords = ["wasm", "webassembly", "bytecode", "interpreter"] exclude = [ "/res/*", "/tests/*", "/fuzz/*", "/benches/*" ] +[features] +default = ["std"] +# Disable for no_std support +std = [] + [dependencies] parity-wasm = "0.31" byteorder = "1.0"