diff options
author | Daniel GarcĂa <[email protected]> | 2024-04-27 23:24:04 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-04-27 23:24:04 +0200 |
commit | 0fe93edea6cb8d4b30416a6d319164f8828ad8b7 (patch) | |
tree | e5e21948abca09706a5be7900ea78ba1e3cf7015 /src/main.rs | |
parent | e9aa5a545eda43e2e868f76115a3cc9c13d4cc30 (diff) | |
download | vaultwarden-0fe93edea6cb8d4b30416a6d319164f8828ad8b7.tar.gz vaultwarden-0fe93edea6cb8d4b30416a6d319164f8828ad8b7.zip |
Some fixes for the new mobile apps (#4526)
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index c20ecfe1..c7726a87 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,7 +3,7 @@ // The more key/value pairs there are the more recursion occurs. // We want to keep this as low as possible, but not higher then 128. // If you go above 128 it will cause rust-analyzer to fail, -#![recursion_limit = "87"] +#![recursion_limit = "90"] // When enabled use MiMalloc as malloc instead of the default malloc #[cfg(feature = "enable_mimalloc")] |