1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-07-15 08:41:15 +00:00

Update deps and fix email check

This commit is contained in:
Daniel García 2019-02-12 15:01:02 +01:00
parent 9636f33fdb
commit ff2fbd322e
No known key found for this signature in database
GPG key ID: FC8A7D14C3CD543A
2 changed files with 96 additions and 99 deletions

View file

@ -34,9 +34,9 @@ rmpv = "0.4.0"
chashmap = "2.2.0"
# A generic serialization/deserialization framework
serde = "1.0.85"
serde_derive = "1.0.85"
serde_json = "1.0.37"
serde = "1.0.87"
serde_derive = "1.0.87"
serde_json = "1.0.38"
# Logging
log = "0.4.6"
@ -81,7 +81,7 @@ dotenv = { version = "0.13.0", default-features = false }
lazy_static = { version = "1.2.0", features = ["nightly"] }
# More derives
derive_more = "0.13.0"
derive_more = "0.14.0"
# Numerical libraries
num-traits = "0.2.6"
@ -107,3 +107,6 @@ rmp = { git = 'https://github.com/dani-garcia/msgpack-rust' }
lettre = { git = 'https://github.com/lettre/lettre', rev = 'c988b1760ad81' }
lettre_email = { git = 'https://github.com/lettre/lettre', rev = 'c988b1760ad81' }
# Allow emails with domains that start with numbers
fast_chemail = { git = 'https://github.com/dani-garcia/fast_chemail_rs' }