Remove unnecessary recursion_limit.
Reduce type_length_limits. Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
parent
b5890b9664
commit
a4f589f475
3 changed files with 2 additions and 3 deletions
|
|
@ -1,4 +1,3 @@
|
|||
#![recursion_limit = "192"]
|
||||
#![allow(clippy::wildcard_imports)]
|
||||
#![allow(clippy::enum_glob_use)]
|
||||
#![allow(clippy::too_many_arguments)]
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#![type_length_limit = "49152"] //TODO: reduce me
|
||||
#![type_length_limit = "4096"] //TODO: reduce me
|
||||
|
||||
pub(crate) mod clap;
|
||||
mod logging;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue