Skip to content
This repository was archived by the owner on Apr 13, 2024. It is now read-only.

Commit 9fa02dd

Browse files
chore: ignore clippy::future_not_send
please see rust-lang/rust-clippy#10645 for more information
1 parent bd842ad commit 9fa02dd

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
#![deny(clippy::all)]
12
#![warn(clippy::pedantic, clippy::nursery)]
23
#![deny(type_alias_bounds, legacy_derive_helpers, late_bound_lifetime_arguments)]
4+
// https://github.com/rust-lang/rust-clippy/issues/10645
5+
#![allow(clippy::future_not_send)]
36
mod payload;
47
mod call;
58
mod config;

0 commit comments

Comments
 (0)