Wasynth/fuzz/Cargo.toml
2021-11-28 15:30:11 -05:00

26 lines
421 B
TOML

[package]
name = "fuzz"
version = "0.0.0"
publish = false
edition = "2021"
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
wasm-smith = "0.8.0"
[dependencies.parity-wasm]
git = "https://github.com/paritytech/parity-wasm.git"
features = ["multi_value", "sign_ext"]
[dependencies.wasm]
path = "../wasm"
[[bin]]
name = "translator"
path = "fuzz_targets/translator.rs"
test = false
doc = false