From 704f96e2e710d9bc4269ea6f9ce20ad1e1429268 Mon Sep 17 00:00:00 2001 From: Julius Rakow Date: Fri, 24 Aug 2018 23:47:20 +0200 Subject: [PATCH] add default-enabled std feature --- Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) 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"