From 5ccd9cfb1034e71b915e72dfcb197f773c6ac836 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 30 Sep 2024 16:44:59 -0400 Subject: [PATCH] lints: fix unexpected cfgs warnings --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index a84beebc..e55b3ba7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -71,5 +71,8 @@ env_logger = { version = "0.10", default-features = false } tokio-rustls = "0.24" webpki-roots = "0.25" +[lints.rust] +unexpected_cfgs = { level = "warn", check-cfg = ["cfg(fuzzing)"] } + [package.metadata.docs.rs] features = ["stream"]