bump up recursion limits by a lot

This commit is contained in:
Diva M 2023-03-10 14:26:15 -05:00
parent 203a9e5f5e
commit 61b12c2eff
No known key found for this signature in database
GPG Key ID: 1BAE5E01126680FE
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#![recursion_limit = "256"]
#![recursion_limit = "1024"]
//! This crate contains a HTTP server which serves the endpoints listed here:
//!
//! https://github.com/ethereum/beacon-APIs

View File

@ -1,5 +1,5 @@
#![cfg(not(debug_assertions))] // Tests are too slow in debug.
#![recursion_limit = "256"]
#![recursion_limit = "512"]
pub mod common;
pub mod fork_tests;

View File

@ -1,4 +1,4 @@
#![recursion_limit = "256"]
#![recursion_limit = "512"]
mod metrics;