diff options
author | Daniel GarcĂa <[email protected]> | 2024-06-23 21:31:02 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-06-23 21:31:02 +0200 |
commit | a2bf8def2a34d0c362115c5964846d0ee2ef311f (patch) | |
tree | 1e446026b5bb0e896144e7af280074321cf9791b /src/main.rs | |
parent | 8f05a90b96adfe06722d01510923759fe61a8bd6 (diff) | |
download | vaultwarden-a2bf8def2a34d0c362115c5964846d0ee2ef311f.tar.gz vaultwarden-a2bf8def2a34d0c362115c5964846d0ee2ef311f.zip |
Change API and structs to camelCase (#4386)
* Change API inputs/outputs and structs to camelCase
* Fix fields and password history
* Use convert_json_key_lcase_first
* Make sends lowercase
* Update admin and templates
* Update org revoke
* Fix sends expecting size to be a string on mobile
* Convert two-factor providers to string
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 c7726a87..73085901 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 = "90"] +#![recursion_limit = "200"] // When enabled use MiMalloc as malloc instead of the default malloc #[cfg(feature = "enable_mimalloc")] |