2018-01-17 15:32:33 +00:00
|
|
|
[package]
|
2018-01-22 14:58:14 +00:00
|
|
|
name = "wasmi"
|
2018-03-20 16:19:44 +00:00
|
|
|
version = "0.1.0"
|
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-20 16:19:44 +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"]
|
2018-03-20 16:19:44 +00:00
|
|
|
exclude = [ "/res/*", "/tests/*", "/fuzz/*" ]
|
2018-01-17 15:32:33 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2018-02-21 15:00:32 +00:00
|
|
|
parity-wasm = "0.27"
|
2018-01-17 15:32:33 +00:00
|
|
|
byteorder = "1.0"
|
2018-02-14 15:44:11 +00:00
|
|
|
memory_units = "0.3.0"
|
2018-01-18 12:22:46 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-03-12 11:37:43 +00:00
|
|
|
wabt = "~0.2.2"
|
2018-02-09 08:20:21 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
# 32-bit platforms are not supported and not tested. Use this flag if you really want to use
|
|
|
|
# wasmi on these platforms.
|
|
|
|
# See https://github.com/pepyakin/wasmi/issues/43
|
|
|
|
32bit_opt_in = []
|