wasm-utils/Cargo.toml

45 lines
822 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"
2018-03-24 17:48:55 +03:00
version = "0.1.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-02-21 19:39:00 +03:00
parity-wasm = "0.27"
2017-05-05 15:51:08 +03:00
log = "0.3"
env_logger = "0.4"
lazy_static = "0.2"
2017-05-26 02:40:28 +03:00
clap = "2.24"
2017-08-09 13:45:35 +03:00
glob = "0.2"
2017-09-25 20:14:46 +03:00
byteorder = "1"
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"
2017-11-03 15:16:48 +03:00
2017-05-04 15:59:22 +03:00
[lib]
[[bin]]
2017-09-15 22:00:35 +03:00
name = "wasm-prune"
2018-03-12 15:30:38 +03:00
path = "prune/main.rs"
2017-05-04 15:59:22 +03:00
[[bin]]
name = "wasm-ext"
2018-03-12 15:30:38 +03:00
path = "ext/main.rs"
2017-05-04 15:59:22 +03:00
[[bin]]
name = "wasm-gas"
2018-03-12 15:30:38 +03:00
path = "gas/main.rs"
2017-08-09 13:45:35 +03:00
[[bin]]
name = "wasm-build"
2018-03-07 12:49:42 +03:00
path = "build/main.rs"
[[bin]]
name = "wasm-stack-height"
2018-03-12 15:30:38 +03:00
path = "stack_height/main.rs"