aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorHelmut K. C. Tessarek <[email protected]>2023-01-31 21:26:23 -0500
committerHelmut K. C. Tessarek <[email protected]>2023-02-07 13:52:52 -0500
commit68bcc7a4b8c47ca76eb03a0ce7db22e89afa2ce1 (patch)
tree93697eed2eb5f2e6ee08088957bd0e933b2dedf5 /src/main.rs
parent9366e3145231034040d7d2e0216070163d6d889f (diff)
downloadvaultwarden-68bcc7a4b8c47ca76eb03a0ce7db22e89afa2ce1.tar.gz
vaultwarden-68bcc7a4b8c47ca76eb03a0ce7db22e89afa2ce1.zip
add argon2 kdf fields
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 3c648231..cd17a2f5 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -34,7 +34,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 = "97"]
+#![recursion_limit = "103"]
// When enabled use MiMalloc as malloc instead of the default malloc
#[cfg(feature = "enable_mimalloc")]