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]
|
2021-08-31 17:00:50 +00:00
|
|
|
arbitrary = { version = "1.0.2", features = ["derive"] }
|
2021-08-25 15:22:09 +00:00
|
|
|
libfuzzer-sys = "0.4"
|
2020-07-01 06:53:49 +00:00
|
|
|
|
|
|
|
[dependencies.naga]
|
|
|
|
path = ".."
|
2021-08-31 17:00:50 +00:00
|
|
|
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
|
2021-08-31 17:00:50 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "glsl_parser"
|
|
|
|
path = "fuzz_targets/glsl_parser.rs"
|
|
|
|
test = false
|
|
|
|
doc = false
|