Fix fuzzing setup

Set naga features in `fuzz/Cargo.toml` to those required for SPIR-V and
WGSL input.
Also bump libfuzzer-sys version.
This commit is contained in:
Hans Christian Schmitz
2021-08-25 17:22:09 +02:00
committed by Dzmitry Malyshau
parent f11afd4fcf
commit db845347f2

View File

@@ -9,11 +9,11 @@ edition = "2018"
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.3"
libfuzzer-sys = "0.4"
[dependencies.naga]
path = ".."
features = ["spirv"]
features = ["spv-in", "wgsl-in"]
# Prevent this from interfering with workspaces
[workspace]