waffle/fuzz/Cargo.toml

36 lines
533 B
TOML
Raw Normal View History

[package]
name = "waffle-fuzz"
version = "0.0.0"
authors = ["Automatically generated"]
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
2021-11-13 22:38:28 +00:00
libfuzzer-sys = "0.4"
wasm-smith = "0.8"
2021-11-14 00:44:53 +00:00
env_logger = "0.9"
2021-11-20 20:20:34 +00:00
log = "0.4"
[dependencies.waffle]
path = ".."
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "parse_ir"
path = "fuzz_targets/parse_ir.rs"
test = false
doc = false
2021-11-14 08:00:34 +00:00
[[bin]]
name = "roundtrip"
path = "fuzz_targets/roundtrip.rs"
test = false
doc = false