From db845347f23f3a00add894d38cf62d28f47669ed Mon Sep 17 00:00:00 2001 From: Hans Christian Schmitz Date: Wed, 25 Aug 2021 17:22:09 +0200 Subject: [PATCH] Fix fuzzing setup Set naga features in `fuzz/Cargo.toml` to those required for SPIR-V and WGSL input. Also bump libfuzzer-sys version. --- fuzz/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index a2b18642e5..a95afc0f44 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -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]