34 lines
571 B
TOML
34 lines
571 B
TOML
|
|
[package]
|
|
name = "wasmi-fuzz"
|
|
version = "0.0.1"
|
|
authors = ["Automatically generated"]
|
|
publish = false
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
wasmi = { path = ".." }
|
|
wabt = "0.2.0"
|
|
wasmparser = "0.14.1"
|
|
|
|
[dependencies.libfuzzer-sys]
|
|
git = "https://github.com/rust-fuzz/libfuzzer-sys.git"
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[bin]]
|
|
name = "load"
|
|
path = "fuzz_targets/load.rs"
|
|
|
|
[[bin]]
|
|
name = "load_wabt"
|
|
path = "fuzz_targets/load_wabt.rs"
|
|
|
|
[[bin]]
|
|
name = "load_wasmparser"
|
|
path = "fuzz_targets/load_wasmparser.rs"
|