mirror of
https://github.com/pezkuwichain/wasm-instrument.git
synced 2026-04-22 09:07:59 +00:00
b8e6b9e319
Updates the requirements on [env_logger](https://github.com/env-logger-rs/env_logger) to permit the latest version. - [Release notes](https://github.com/env-logger-rs/env_logger/releases) - [Changelog](https://github.com/env-logger-rs/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/env-logger-rs/env_logger/compare/v0.8.0...v0.9.0) --- updated-dependencies: - dependency-name: env_logger dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
76 lines
1.7 KiB
TOML
76 lines
1.7 KiB
TOML
[package]
|
|
name = "pwasm-utils"
|
|
version = "0.18.1"
|
|
edition = "2018"
|
|
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"]
|
|
repository = "https://github.com/paritytech/wasm-utils"
|
|
|
|
[[bin]]
|
|
name = "wasm-prune"
|
|
path = "cli/prune/main.rs"
|
|
required-features = ["cli"]
|
|
|
|
[[bin]]
|
|
name = "wasm-ext"
|
|
path = "cli/ext/main.rs"
|
|
required-features = ["cli"]
|
|
|
|
[[bin]]
|
|
name = "wasm-gas"
|
|
path = "cli/gas/main.rs"
|
|
required-features = ["cli"]
|
|
|
|
[[bin]]
|
|
name = "wasm-build"
|
|
path = "cli/build/main.rs"
|
|
required-features = ["cli"]
|
|
|
|
[[bin]]
|
|
name = "wasm-stack-height"
|
|
path = "cli/stack_height/main.rs"
|
|
required-features = ["cli"]
|
|
|
|
[[bin]]
|
|
name = "wasm-pack"
|
|
path = "cli/pack/main.rs"
|
|
required-features = ["cli"]
|
|
|
|
[[bin]]
|
|
name = "wasm-check"
|
|
path = "cli/check/main.rs"
|
|
required-features = ["cli"]
|
|
|
|
[dependencies]
|
|
byteorder = { version = "1", default-features = false }
|
|
log = { version = "0.4", default-features = false }
|
|
parity-wasm = { version = "0.42", default-features = false }
|
|
|
|
# Dependencies only used by the binaries
|
|
clap = { version = "2", optional = true }
|
|
env_logger = { version = "0.9", optional = true }
|
|
glob = { version = "0.3", optional = true }
|
|
lazy_static = { version = "1", optional = true }
|
|
|
|
[dev-dependencies]
|
|
binaryen = "0.12"
|
|
diff = "0.1"
|
|
indoc = "1"
|
|
rand = "0.8"
|
|
tempdir = "0.3"
|
|
wabt = "0.10"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["parity-wasm/std", "log/std", "byteorder/std"]
|
|
cli = [
|
|
"std",
|
|
"glob",
|
|
"clap",
|
|
"env_logger",
|
|
"lazy_static",
|
|
]
|