2019-07-14 00:57:30 +00:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "wasmer-fuzz"
|
|
|
|
version = "0.0.1"
|
|
|
|
authors = ["Automatically generated"]
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[package.metadata]
|
|
|
|
cargo-fuzz = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
wasmer-runtime = { path = "../lib/runtime" }
|
2019-09-02 09:08:40 +00:00
|
|
|
wasmer-runtime-core = { path = "../lib/runtime-core" }
|
|
|
|
wasmer = { path = "../" }
|
2019-11-08 19:10:44 +00:00
|
|
|
wasmer-llvm-backend = { path = "../lib/llvm-backend" }
|
|
|
|
wasmer-singlepass-backend = { path = "../lib/singlepass-backend" }
|
2019-07-14 00:57:30 +00:00
|
|
|
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 09:08:40 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "validate_wasm"
|
2019-09-02 09:14:05 +00:00
|
|
|
path = "fuzz_targets/validate_wasm.rs"
|
2019-09-09 09:45:24 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "compile_wasm"
|
2019-09-09 09:49:27 +00:00
|
|
|
path = "fuzz_targets/compile_wasm.rs"
|