wasm-utils/Cargo.toml

29 lines
739 B
TOML
Raw Normal View History

2017-05-04 15:59:22 +03:00
[package]
2018-03-13 15:58:18 +03:00
name = "pwasm-utils"
2019-01-15 14:18:45 +03:00
version = "0.6.2"
2018-03-13 16:09:28 +03:00
authors = ["Nikolay Volf <nikvolf@gmail.com>", "Sergey Pepyakin <s.pepyakin@gmail.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
description = "Collection of command-line utilities and corresponding Rust api for producing pwasm-compatible executables"
keywords = ["wasm", "webassembly", "pwasm"]
2017-05-04 15:59:22 +03:00
[dependencies]
2018-06-29 19:01:06 +08:00
parity-wasm = { version = "0.31", default-features = false }
log = { version = "0.4", default-features = false }
byteorder = { version = "1", default-features = false }
2017-05-04 15:59:22 +03:00
2017-11-03 15:16:48 +03:00
[dev-dependencies]
tempdir = "0.3"
wabt = "0.2"
diff = "0.1.11"
2019-01-27 12:14:14 +03:00
indoc = "0.3"
2017-11-03 15:16:48 +03:00
[features]
default = ["std"]
std = ["parity-wasm/std", "log/std", "byteorder/std"]
[workspace]
members = [
"./cli",
]