Files
wasmtime/fuzz/Cargo.toml
2018-11-26 22:50:07 -08:00

29 lines
660 B
TOML

[package]
name = "wasmtime-fuzz"
version = "0.0.0"
authors = ["The Cranelift Project Developers"]
publish = false
[package.metadata]
cargo-fuzz = true
[dependencies]
wasmtime-environ = { path = "../lib/environ" }
wasmtime-execute = { path = "../lib/execute" }
cranelift-codegen = "0.25.0"
cranelift-wasm = "0.25.0"
cranelift-native = "0.25.0"
libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" }
wasmparser = { version = "0.22.0", default-features = false }
[features]
default = ["wasmparser/core"]
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "compile"
path = "fuzz_targets/compile.rs"