From 9fa02dde413d9633a4a31557bf69d8eee0cfce72 Mon Sep 17 00:00:00 2001 From: Kisaragi Marine Date: Sat, 24 Jun 2023 00:41:14 +0900 Subject: [PATCH] chore: ignore clippy::future_not_send please see https://github.com/rust-lang/rust-clippy/issues/10645 for more information --- src/main.rs | 3 +++ 1 file changed, 3 insertions(+) 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;