Files
wasmtime/cranelift/isle/fuzz/Cargo.toml
Nick Fitzgerald a099b2b590 Extend fuzzing to semantic analysis and codegen
* Fix a panic when we are substituting macro args, but we already had an error
  involving the macro.

* Fix a stack overflow when an internal extractor's definition is recursive.
2021-11-11 15:56:55 -08:00

22 lines
382 B
TOML

[package]
name = "isle-fuzz"
version = "0.0.0"
authors = ["Automatically generated"]
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
env_logger = { version = "0.9.0", default-features = false }
isle = { path = "../isle" }
libfuzzer-sys = "0.4"
log = "0.4.14"
[[bin]]
name = "compile"
path = "fuzz_targets/compile.rs"
test = false
doc = false