Remove unnecessary recursion_limit.

Reduce type_length_limits.

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk
2025-08-27 00:08:18 +00:00
committed by dasha_uwu
parent b5890b9664
commit a4f589f475
3 changed files with 2 additions and 3 deletions

View File

@@ -1,4 +1,3 @@
#![recursion_limit = "192"]
#![allow(clippy::wildcard_imports)]
#![allow(clippy::enum_glob_use)]
#![allow(clippy::too_many_arguments)]

View File

@@ -1,4 +1,4 @@
#![type_length_limit = "262144"] //TODO: REDUCE ME
#![type_length_limit = "65536"] //TODO: REDUCE ME
#![allow(clippy::toplevel_ref_arg)]
pub mod client;

View File

@@ -1,4 +1,4 @@
#![type_length_limit = "49152"] //TODO: reduce me
#![type_length_limit = "4096"] //TODO: reduce me
pub(crate) mod clap;
mod logging;