wasmi/Cargo.toml

32 lines
1019 B
TOML
Raw Normal View History

2018-01-17 15:32:33 +00:00
[package]
2018-01-22 14:58:14 +00:00
name = "wasmi"
2019-01-03 11:40:20 +00:00
version = "0.4.3"
2018-01-18 12:22:46 +00:00
authors = ["Nikolay Volf <nikvolf@gmail.com>", "Svyatoslav Nikolsky <svyatonik@yandex.ru>", "Sergey Pepyakin <s.pepyakin@gmail.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
2018-03-21 07:51:51 +00:00
repository = "https://github.com/paritytech/wasmi"
documentation = "https://paritytech.github.io/wasmi/"
2018-01-18 12:22:46 +00:00
description = "WebAssembly interpreter"
keywords = ["wasm", "webassembly", "bytecode", "interpreter"]
exclude = [ "/res/*", "/tests/*", "/fuzz/*", "/benches/*" ]
2018-01-17 15:32:33 +00:00
[features]
default = ["std"]
# Disable for no_std support
std = ["parity-wasm/std", "byteorder/std"]
# Enable for no_std support
# hashmap_core only works on no_std
core = ["hashmap_core", "libm"]
2018-01-17 15:32:33 +00:00
[dependencies]
parity-wasm = { version = "0.31", default-features = false }
byteorder = { version = "1.0", default-features = false }
hashmap_core = { version = "0.1.9", optional = true }
2018-02-14 15:44:11 +00:00
memory_units = "0.3.0"
libm = { version = "0.1.2", optional = true }
2018-01-18 12:22:46 +00:00
[dev-dependencies]
2018-04-20 14:55:07 +00:00
assert_matches = "1.1"
rand = "0.4.2"
wabt = "0.6"