[package] name = "wasmi" version = "0.4.5" authors = ["Nikolay Volf ", "Svyatoslav Nikolsky ", "Sergey Pepyakin "] license = "MIT/Apache-2.0" readme = "README.md" repository = "https://github.com/paritytech/wasmi" documentation = "https://paritytech.github.io/wasmi/" description = "WebAssembly interpreter" keywords = ["wasm", "webassembly", "bytecode", "interpreter"] exclude = [ "/res/*", "/tests/*", "/fuzz/*", "/benches/*" ] [dependencies] wasmi-validation = { version = "0.1", path = "validation", default-features = false } parity-wasm = { version = "0.31", default-features = false } memory_units = "0.3.0" libm = { version = "0.1.2", optional = true } num-rational = "0.2.2" num-traits = "0.2.8" [dev-dependencies] assert_matches = "1.1" rand = "0.4.2" wabt = "0.6" [features] default = ["std"] # Disable for no_std support std = [ "parity-wasm/std", "wasmi-validation/std", "num-rational/std", "num-traits/std" ] # Enable for no_std support core = [ "wasmi-validation/core", "libm" ] [workspace] members = ["validation"] exclude = ["benches"]