Mitigate clippy::duration_suboptimal_units until 1.91 msrv upgrade.
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
parent
7bc25ad1b1
commit
136c0f2682
4 changed files with 4 additions and 0 deletions
|
|
@ -1,5 +1,6 @@
|
|||
#![type_length_limit = "262144"] //TODO: REDUCE ME
|
||||
#![expect(clippy::toplevel_ref_arg)]
|
||||
#![expect(clippy::duration_suboptimal_units)] // remove after MSRV 1.91
|
||||
|
||||
pub mod client;
|
||||
pub mod router;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
#![type_length_limit = "4096"] //TODO: reduce me
|
||||
#![expect(clippy::duration_suboptimal_units)] // remove after MSRV 1.91
|
||||
|
||||
pub mod args;
|
||||
pub mod logging;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
#![type_length_limit = "32768"] //TODO: reduce me
|
||||
#![expect(clippy::duration_suboptimal_units)] // remove after MSRV 1.91
|
||||
|
||||
mod layers;
|
||||
mod request;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
#![recursion_limit = "256"]
|
||||
#![type_length_limit = "98304"]
|
||||
#![expect(refining_impl_trait)]
|
||||
#![expect(clippy::duration_suboptimal_units)] // remove after MSRV 1.91
|
||||
|
||||
mod manager;
|
||||
mod migrations;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue