wgpu/fuzz/Cargo.toml

40 lines
679 B
TOML
Raw Normal View History

2020-07-01 06:53:49 +00:00
[package]
name = "naga-fuzz"
version = "0.0.0"
authors = ["Automatically generated"]
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
arbitrary = { version = "1.0.2", features = ["derive"] }
libfuzzer-sys = "0.4"
2020-07-01 06:53:49 +00:00
[dependencies.naga]
path = ".."
features = ["spv-in", "wgsl-in", "glsl-in"]
2020-07-01 06:53:49 +00:00
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "spv_parser"
path = "fuzz_targets/spv_parser.rs"
test = false
doc = false
[[bin]]
name = "wgsl_parser"
path = "fuzz_targets/wgsl_parser.rs"
test = false
doc = false
[[bin]]
name = "glsl_parser"
path = "fuzz_targets/glsl_parser.rs"
test = false
doc = false