From ffe6a771d291f482671524845ff6f179369dffaf Mon Sep 17 00:00:00 2001 From: Matthew Kaminski Date: Sun, 18 Aug 2024 16:30:37 -0400 Subject: [PATCH] Add engine and client cfg Should fix some linking errors --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 72cc281..200f3fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,3 +42,6 @@ sea-orm = { version = "0.12.0", features = [ wasm-bindgen = "0.2" reqwest = { version = "0.11", features = ["json"] } sea-orm = { version = "0.12.0" } + +[lints.rust] +unexpected_cfgs = { level = "warn", check-cfg = ['cfg(engine)', 'cfg(client)'] }