From 4e27febdc053c89ebc5ce055f3d16ea8d55e4c1b Mon Sep 17 00:00:00 2001 From: LGUG2Z Date: Fri, 11 Oct 2024 14:14:13 -0700 Subject: [PATCH] chore(cargo): suppress macro lint warnings --- komorebic/Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/komorebic/Cargo.toml b/komorebic/Cargo.toml index bdffc6dd..ec29e505 100644 --- a/komorebic/Cargo.toml +++ b/komorebic/Cargo.toml @@ -38,4 +38,7 @@ windows = { workspace = true } [build-dependencies] reqwest = { version = "0.12", features = ["blocking"] } -shadow-rs = { workspace = true } \ No newline at end of file +shadow-rs = { workspace = true } + +[lints.rust] +unexpected_cfgs = { level = "warn", check-cfg = ['cfg(FALSE)'] } \ No newline at end of file