Mitigate clippy::duration_suboptimal_units until 1.91 msrv upgrade.

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk
2026-01-28 05:57:08 +00:00
parent 7bc25ad1b1
commit 136c0f2682
4 changed files with 4 additions and 0 deletions

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;