mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-26 08:44:08 +00:00
33 lines
507 B
TOML
33 lines
507 B
TOML
|
[package]
|
||
|
name = "naga-fuzz"
|
||
|
version = "0.0.0"
|
||
|
authors = ["Automatically generated"]
|
||
|
publish = false
|
||
|
edition = "2018"
|
||
|
|
||
|
[package.metadata]
|
||
|
cargo-fuzz = true
|
||
|
|
||
|
[dependencies]
|
||
|
libfuzzer-sys = "0.3"
|
||
|
|
||
|
[dependencies.naga]
|
||
|
path = ".."
|
||
|
features = ["spirv"]
|
||
|
|
||
|
# 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
|