mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-04 18:10:18 +00:00
34 lines
779 B
TOML
34 lines
779 B
TOML
|
|
[package]
|
|
name = "wasmer-fuzz"
|
|
version = "0.0.1"
|
|
authors = ["Automatically generated"]
|
|
publish = false
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
wasmer-runtime = { path = "../lib/runtime" }
|
|
wasmer-runtime-core = { path = "../lib/runtime-core" }
|
|
wasmer = { path = "../" }
|
|
wasmer-llvm-backend = { path = "../lib/llvm-backend" }
|
|
wasmer-singlepass-backend = { path = "../lib/singlepass-backend" }
|
|
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"
|
|
|
|
[[bin]]
|
|
name = "validate_wasm"
|
|
path = "fuzz_targets/validate_wasm.rs"
|
|
|
|
[[bin]]
|
|
name = "compile_wasm"
|
|
path = "fuzz_targets/compile_wasm.rs"
|