From 8cdc706c57d80bac3c4abc196987855a6e5c0a20 Mon Sep 17 00:00:00 2001 From: Matheus Consoli Date: Mon, 20 May 2024 12:23:26 -0300 Subject: [PATCH] Remove all recursion_limit --- core/crates/heavy-lifting/src/lib.rs | 1 - core/crates/prisma-helpers/src/lib.rs | 1 - core/src/lib.rs | 1 - crates/prisma/src/lib.rs | 1 - 4 files changed, 4 deletions(-) diff --git a/core/crates/heavy-lifting/src/lib.rs b/core/crates/heavy-lifting/src/lib.rs index b0d18ffd733f..696940179cbf 100644 --- a/core/crates/heavy-lifting/src/lib.rs +++ b/core/crates/heavy-lifting/src/lib.rs @@ -1,4 +1,3 @@ -#![recursion_limit = "256"] #![warn( clippy::all, clippy::pedantic, diff --git a/core/crates/prisma-helpers/src/lib.rs b/core/crates/prisma-helpers/src/lib.rs index d562ab534952..0db43412c0b4 100644 --- a/core/crates/prisma-helpers/src/lib.rs +++ b/core/crates/prisma-helpers/src/lib.rs @@ -1,4 +1,3 @@ -#![recursion_limit = "256"] #![warn( clippy::all, clippy::pedantic, diff --git a/core/src/lib.rs b/core/src/lib.rs index 037f57e1a4d2..dd69a6d25a0f 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -1,4 +1,3 @@ -#![recursion_limit = "256"] #![warn(clippy::unwrap_used, clippy::panic)] use crate::{ diff --git a/crates/prisma/src/lib.rs b/crates/prisma/src/lib.rs index d5116b85508d..1a162008a84d 100644 --- a/crates/prisma/src/lib.rs +++ b/crates/prisma/src/lib.rs @@ -1,4 +1,3 @@ -#![recursion_limit = "256"] #[allow(warnings, unused)] pub mod prisma; #[allow(warnings, unused)]