From abe422d0f407401a45c1efdafbaec33520765dae Mon Sep 17 00:00:00 2001 From: Paul Otten Date: Mon, 14 Apr 2025 19:19:25 -0400 Subject: [PATCH] fuzz/Cargo.toml: don't try to inherit lints On line 25 we isolate the fuzzer to it's own minimal workspace. Therefor there are no workplace lints to inherit and we get an error. --- fuzz/Cargo.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 5e3031041..583c38470 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -7,9 +7,6 @@ edition = "2021" [package.metadata] cargo-fuzz = true -[lints] -workspace = true - [dependencies] libfuzzer-sys = "0.4.9"