From 30fcad8f0cc92f8d0014d134ee9aec4ca0c16748 Mon Sep 17 00:00:00 2001 From: Kisaragi Marine Date: Sun, 2 Jul 2023 19:59:50 +0900 Subject: [PATCH] chore: ignore clippy::future_not_send See https://github.com/rust-lang/rust-clippy/issues/10645 for more info --- packages/toy-blog/src/service/http.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/toy-blog/src/service/http.rs b/packages/toy-blog/src/service/http.rs index 30c8f5d..3ea42b8 100644 --- a/packages/toy-blog/src/service/http.rs +++ b/packages/toy-blog/src/service/http.rs @@ -1,3 +1,8 @@ +// This fires on HttpRequest, which is not FP. +// But causes ICE; it will block CI. +// Let's disable this until the fix land on 1.71.0. See https://github.com/rust-lang/rust-clippy/issues/10645 for more info. +#![allow(clippy::future_not_send)] + pub mod api; pub mod cors; pub mod repository;