You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
939 B
38 lines
939 B
[package]
|
|
name = "wasmtime-fuzz"
|
|
version = "0.0.0"
|
|
authors = ["The Wasmtime Project Developers"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
wasmtime-environ = { path = "../wasmtime-environ" }
|
|
wasmtime-jit = { path = "../wasmtime-jit" }
|
|
cranelift-codegen = { version = "0.44.0", features = ["enable-serde"] }
|
|
cranelift-wasm = { version = "0.44.0", features = ["enable-serde"] }
|
|
cranelift-native = "0.44.0"
|
|
libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" }
|
|
wasmparser = { version = "0.39.1", default-features = false }
|
|
binaryen = "0.5.0"
|
|
|
|
[features]
|
|
default = ["wasmparser/core"]
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[bin]]
|
|
name = "compile"
|
|
path = "fuzz_targets/compile.rs"
|
|
|
|
[[bin]]
|
|
name = "instantiate"
|
|
path = "fuzz_targets/instantiate.rs"
|
|
|
|
[[bin]]
|
|
name = "instantiate_translated"
|
|
path = "fuzz_targets/instantiate_translated.rs"
|
|
|