diff --git a/benches/lib.rs b/benches/lib.rs index d11b771..d52f255 100644 --- a/benches/lib.rs +++ b/benches/lib.rs @@ -1,4 +1,8 @@ -#![allow(clippy::cast_lossless, clippy::let_underscore_untyped)] +#![allow( + clippy::cast_lossless, + clippy::let_underscore_untyped, + clippy::uninlined_format_args +)] use quote::quote; diff --git a/benches/main.rs b/benches/main.rs index 4ab5945..ba6fe77 100644 --- a/benches/main.rs +++ b/benches/main.rs @@ -1,5 +1,9 @@ #![allow(unknown_lints, special_module_name)] -#![allow(clippy::cast_lossless, clippy::let_underscore_untyped)] +#![allow( + clippy::cast_lossless, + clippy::let_underscore_untyped, + clippy::uninlined_format_args +)] quote_benchmark::run_quote_benchmark!(_);