diff --git a/src/main.rs b/src/main.rs index f5486b5..5d2fb09 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,5 +1,8 @@ +#![deny(clippy::all)] #![warn(clippy::pedantic, clippy::nursery)] #![deny(type_alias_bounds, legacy_derive_helpers, late_bound_lifetime_arguments)] +// https://github.com/rust-lang/rust-clippy/issues/10645 +#![allow(clippy::future_not_send)] mod payload; mod call; mod config;