wasmer/fuzz/Cargo.toml

34 lines
895 B
TOML
Raw Normal View History

[package]
name = "wasmer-fuzz"
version = "0.0.1"
authors = ["Automatically generated"]
publish = false
[package.metadata]
cargo-fuzz = true
[dependencies]
2020-07-28 20:07:16 +03:00
wasmer-runtime-fl = { path = "../lib/runtime" }
wasmer-runtime-core = { path = "../lib/runtime-core", package = "wasmer-runtime-core-fl" }
2019-09-02 11:08:40 +02:00
wasmer = { path = "../" }
2020-07-28 22:43:04 +03:00
wasmer-llvm-backend = { path = "../lib/llvm-backend", package = "wasmer-llvm-backend-fl" }
wasmer-singlepass-backend = { path = "../lib/singlepass-backend", package = "wasmer-singlepass-backend-fl"}
libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" }
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "simple_instantiate"
path = "fuzz_targets/simple_instantiate.rs"
2019-09-02 11:08:40 +02:00
[[bin]]
name = "validate_wasm"
2019-09-02 11:14:05 +02:00
path = "fuzz_targets/validate_wasm.rs"
2019-09-09 11:45:24 +02:00
[[bin]]
name = "compile_wasm"
2019-09-09 11:49:27 +02:00
path = "fuzz_targets/compile_wasm.rs"