From d87e8f8bdfe6bfd59c850e5a532145becbb60fd6 Mon Sep 17 00:00:00 2001 From: umgefahren <55623006+umgefahren@users.noreply.github.com> Date: Fri, 2 Aug 2024 16:19:12 +0200 Subject: [PATCH] Add lint exception to make CI pass again --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index a01e7fb..be8c568 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,3 +31,6 @@ bincode = "1" quickcheck = { version = "1.0.3", default-features = false } rand = "0.8.4" serde_json = "1.0" + +[lints.rust] +unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] }