Files
wasmtime/fuzz/Cargo.toml
Dan Gohman c612d48b33 Rename to wasmtime. It's wasmtime!
Also, update to Cretonne 0.13.0.
2018-07-02 16:20:22 -07:00

35 lines
635 B
TOML

[package]
name = "wasmtime_fuzz"
version = "0.0.1"
authors = ["The Cretonne Project Developers"]
publish = false
[package.metadata]
cargo-fuzz = true
[dependencies.wasmtime_runtime]
path = "../lib/runtime"
[dependencies.wasmtime_execute]
path = "../lib/execute"
[dependencies.cretonne-codegen]
version = "0.8.0"
[dependencies.cretonne-wasm]
version = "0.8.0"
[dependencies.cretonne-native]
version = "0.8.0"
[dependencies.libfuzzer-sys]
git = "https://github.com/rust-fuzz/libfuzzer-sys.git"
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "compile"
path = "fuzz_targets/compile.rs"