Skip to content

Commit

Permalink
chore: adjust comment to explain why clippy::future_not_send is avoid…
Browse files Browse the repository at this point in the history
…ed in entire crate
  • Loading branch information
KisaragiEffective committed Mar 12, 2024
1 parent 4345eeb commit 80a56c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/toy-blog/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#![deny(clippy::all)]
#![warn(clippy::pedantic, clippy::nursery)]
// This fires on HttpRequest, which is not FP.
// But we don't want to fire
// But we don't want to be triggered because service function often refers it.
#![allow(clippy::future_not_send)]

mod extension;
Expand Down

0 comments on commit 80a56c2

Please sign in to comment.