1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-07-21 11:38:20 +00:00

Update crates & fix crate vulnerability (#4771)

- fixes GHSA-q445-7m23-qrmw by updating openssl to version 0.10.66
This commit is contained in:
Daniel 2024-07-24 01:26:39 +03:00 committed by GitHub
commit bc7ceb2ee3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 116 additions and 113 deletions

View file

@ -1334,14 +1334,7 @@ where
// And then load user templates to overwrite the defaults
// Use .hbs extension for the files
// Templates get registered with their relative name
hb.register_templates_directory(
path,
DirectorySourceOptions {
tpl_extension: ".hbs".to_owned(),
..Default::default()
},
)
.unwrap();
hb.register_templates_directory(path, DirectorySourceOptions::default()).unwrap();
hb
}