mirror of
https://github.com/fluencelabs/wasmer
synced 2025-03-16 00:00:49 +00:00
34 lines
895 B
TOML
34 lines
895 B
TOML
|
|
[package]
|
|
name = "wasmer-fuzz"
|
|
version = "0.0.1"
|
|
authors = ["Automatically generated"]
|
|
publish = false
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
wasmer-runtime-fl = { path = "../lib/runtime" }
|
|
wasmer-runtime-core = { path = "../lib/runtime-core", package = "wasmer-runtime-core-fl" }
|
|
wasmer = { path = "../" }
|
|
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"
|
|
|
|
[[bin]]
|
|
name = "validate_wasm"
|
|
path = "fuzz_targets/validate_wasm.rs"
|
|
|
|
[[bin]]
|
|
name = "compile_wasm"
|
|
path = "fuzz_targets/compile_wasm.rs"
|