Skip to content

Commit

Permalink
chore: ignore clippy::future_not_send
Browse files Browse the repository at this point in the history
See rust-lang/rust-clippy#10645 for more info
  • Loading branch information
KisaragiEffective committed Jul 2, 2023
1 parent 5cc7765 commit 30fcad8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/toy-blog/src/service/http.rs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down

0 comments on commit 30fcad8

Please sign in to comment.