From 86e56ad16279988ab4fd905312fb62d8f8d5ecaa Mon Sep 17 00:00:00 2001 From: Thibaut Vandervelden Date: Mon, 5 Aug 2024 12:22:49 +0200 Subject: [PATCH] Remove warning for `fuzzing` feature The warning is added in 1.80.0, but can be disabled by updating the Cargo.toml file. --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 576cf175b..5a9a5fb7e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,6 +16,9 @@ license = "0BSD" # ensure that the correct features are enabled. autoexamples = false +[lints.rust] +unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] } + [dependencies] managed = { version = "0.8", default-features = false, features = ["map"] } byteorder = { version = "1.0", default-features = false }