wasmi/fuzz/Cargo.toml

40 lines
699 B
TOML
Raw Permalink Normal View History

2018-01-24 18:32:46 +00:00
[package]
name = "wasmi-fuzz"
version = "0.0.1"
authors = ["Automatically generated"]
publish = false
[package.metadata]
cargo-fuzz = true
[dependencies]
wasmi = { path = ".." }
2019-09-26 11:18:57 +00:00
wabt = "0.9"
2018-02-09 19:41:02 +00:00
wasmparser = "0.14.1"
tempdir = "0.3.6"
2018-01-24 18:32:46 +00:00
[dependencies.libfuzzer-sys]
git = "https://github.com/rust-fuzz/libfuzzer-sys.git"
rev = "737524f7de1e85342b8b6cd1c01edc71018183ba"
2018-01-24 18:32:46 +00:00
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "load"
path = "fuzz_targets/load.rs"
2018-02-09 19:41:02 +00:00
2018-02-15 17:34:56 +00:00
[[bin]]
name = "load_wabt"
path = "fuzz_targets/load_wabt.rs"
2018-02-09 19:41:02 +00:00
[[bin]]
name = "load_wasmparser"
path = "fuzz_targets/load_wasmparser.rs"
[[bin]]
name = "load_spec"
path = "fuzz_targets/load_spec.rs"