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

Commit

Permalink
chore: ignore clippy::future_not_send
Browse files Browse the repository at this point in the history
please see rust-lang/rust-clippy#10645 for more information
  • Loading branch information
KisaragiEffective committed Jun 23, 2023
1 parent bd842ad commit 9fa02dd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down

0 comments on commit 9fa02dd

Please sign in to comment.