fix: 🐛 fix: increase recursion limit to 512
Build & Deploy / build (push) Successful in 2m33s
Build & Deploy / deploy (push) Successful in 3s

This commit is contained in:
Julien Denizot
2026-04-13 19:30:57 +02:00
parent 9f09c02a74
commit f8ba5f4620
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
#![recursion_limit = "256"]
#![recursion_limit = "512"]
pub mod app;
pub mod models;
+1
View File
@@ -1,3 +1,4 @@
#![recursion_limit = "512"]
#[cfg(feature = "ssr")]
#[tokio::main]
async fn main() {