1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-07-25 05:20:42 +00:00

Migrate lazy_static to once_cell, less macro magic and slightly faster

This commit is contained in:
Daniel García 2020-03-09 22:04:03 +01:00
commit 70f3ab8ec3
No known key found for this signature in database
GPG key ID: FC8A7D14C3CD543A
8 changed files with 59 additions and 84 deletions

View file

@ -83,8 +83,8 @@ yubico = { version = "0.7.1", features = ["online-tokio"], default-features = fa
# A `dotenv` implementation for Rust
dotenv = { version = "0.15.0", default-features = false }
# Lazy static macro
lazy_static = "1.4.0"
# Lazy initialization
once_cell = "1.3.1"
# More derives
derive_more = "0.99.3"