Files
wasmtime/fuzz/Cargo.toml
Alex Crichton ca36e4040d Move the fuzz directory into main workspace
This'll help us track dependencies and head off issues like #721
2019-12-16 08:37:56 -08:00

38 lines
763 B
TOML

[package]
name = "wasmtime-fuzz"
version = "0.7.0"
authors = ["The Wasmtime Project Developers"]
edition = "2018"
publish = false
[package.metadata]
cargo-fuzz = true
[dependencies]
arbitrary = "0.2.0"
env_logger = "0.7.1"
log = "0.4.8"
wasmtime-fuzzing = { path = "../crates/fuzzing", features = ["env_logger"] }
wasmtime-jit = { path = "../crates/jit" }
libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" }
[[bin]]
name = "compile"
path = "fuzz_targets/compile.rs"
test = false
[[bin]]
name = "instantiate"
path = "fuzz_targets/instantiate.rs"
test = false
[[bin]]
name = "instantiate_translated"
path = "fuzz_targets/instantiate_translated.rs"
test = false
[[bin]]
name = "api_calls"
path = "fuzz_targets/api_calls.rs"
test = false