[package] name = "susywasmi" version = "0.4.3" authors = ["Nikolay Volf ", "Svyatoslav Nikolsky ", "Sergey Pepyakin "] license = "MIT/Apache-2.0" readme = "README.md" repository = "https://github.com/susytech/susywasmi" documentation = "https://susytech.github.io/susywasmi/" description = "WebAssembly interpreter" keywords = ["susywasm", "webassembly", "bytecode", "interpreter"] exclude = [ "/res/*", "/tests/*", "/fuzz/*", "/benches/*" ] [features] default = ["std"] # Disable for no_std support std = ["susywasm/std", "byteorder/std"] # Enable for no_std support # hashmap_core only works on no_std core = ["hashmap_core", "libm"] [dependencies] susywasm = { version = "0.31", default-features = false } byteorder = { version = "1.0", default-features = false } hashmap_core = { version = "0.1.9", optional = true } memory_units = "0.3.0" libm = { version = "0.1.2", optional = true } [dev-dependencies] assert_matches = "1.1" rand = "0.4.2" wabt = "0.6"