mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 06:44:14 +00:00
48 lines
926 B
TOML
48 lines
926 B
TOML
[package]
|
|
name = "naga-fuzz"
|
|
version = "0.0.0"
|
|
authors = ["Automatically generated"]
|
|
publish = false
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[target.'cfg(not(any(target_arch = "wasm32", target_os = "ios")))'.dependencies]
|
|
arbitrary = { version = "1.3.2", features = ["derive"] }
|
|
libfuzzer-sys = "0.4"
|
|
|
|
[target.'cfg(not(any(target_arch = "wasm32", target_os = "ios")))'.dependencies.naga]
|
|
path = ".."
|
|
version = "23.0.0"
|
|
features = ["arbitrary", "spv-in", "wgsl-in", "glsl-in"]
|
|
|
|
[[bin]]
|
|
name = "spv_parser"
|
|
path = "fuzz_targets/spv_parser.rs"
|
|
bench = false
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "wgsl_parser"
|
|
path = "fuzz_targets/wgsl_parser.rs"
|
|
bench = false
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "glsl_parser"
|
|
path = "fuzz_targets/glsl_parser.rs"
|
|
bench = false
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "ir"
|
|
path = "fuzz_targets/ir.rs"
|
|
bench = false
|
|
test = false
|
|
doc = false
|