From cb2854d265dd4d124f3d543e9d49881669beb78d Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Wed, 12 Aug 2026 13:46:46 -0400 Subject: [PATCH] chore: fix unexpected_cfgs warning --- h3/src/tests/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/h3/src/tests/mod.rs b/h3/src/tests/mod.rs index f9c742df..d3c9f198 100644 --- a/h3/src/tests/mod.rs +++ b/h3/src/tests/mod.rs @@ -5,6 +5,7 @@ // Having a dev-dependency on h3_quinn would work as far as cargo is // concerned, but quic traits wouldn't match between the "h3" crate that // comes before h3_quinn and the one that comes after and runs the tests +#[allow(unexpected_cfgs)] #[path = "../../../h3-quinn/src/lib.rs"] mod h3_quinn;