Mitigate clippy::duration_suboptimal_units until 1.91 msrv upgrade.
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
#![type_length_limit = "262144"] //TODO: REDUCE ME
|
#![type_length_limit = "262144"] //TODO: REDUCE ME
|
||||||
#![expect(clippy::toplevel_ref_arg)]
|
#![expect(clippy::toplevel_ref_arg)]
|
||||||
|
#![expect(clippy::duration_suboptimal_units)] // remove after MSRV 1.91
|
||||||
|
|
||||||
pub mod client;
|
pub mod client;
|
||||||
pub mod router;
|
pub mod router;
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
#![type_length_limit = "4096"] //TODO: reduce me
|
#![type_length_limit = "4096"] //TODO: reduce me
|
||||||
|
#![expect(clippy::duration_suboptimal_units)] // remove after MSRV 1.91
|
||||||
|
|
||||||
pub mod args;
|
pub mod args;
|
||||||
pub mod logging;
|
pub mod logging;
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
#![type_length_limit = "32768"] //TODO: reduce me
|
#![type_length_limit = "32768"] //TODO: reduce me
|
||||||
|
#![expect(clippy::duration_suboptimal_units)] // remove after MSRV 1.91
|
||||||
|
|
||||||
mod layers;
|
mod layers;
|
||||||
mod request;
|
mod request;
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
#![recursion_limit = "256"]
|
#![recursion_limit = "256"]
|
||||||
#![type_length_limit = "98304"]
|
#![type_length_limit = "98304"]
|
||||||
#![expect(refining_impl_trait)]
|
#![expect(refining_impl_trait)]
|
||||||
|
#![expect(clippy::duration_suboptimal_units)] // remove after MSRV 1.91
|
||||||
|
|
||||||
mod manager;
|
mod manager;
|
||||||
mod migrations;
|
mod migrations;
|
||||||
|
|||||||
Reference in New Issue
Block a user