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

Update dependencies and web vault

This commit is contained in:
Daniel García 2021-02-24 20:25:22 +01:00
commit 9117095764
No known key found for this signature in database
GPG key ID: FC8A7D14C3CD543A
10 changed files with 160 additions and 186 deletions

View file

@ -32,7 +32,7 @@ rocket = { version = "0.5.0-dev", features = ["tls"], default-features = false }
rocket_contrib = "0.5.0-dev"
# HTTP client
reqwest = { version = "0.11.0", features = ["blocking", "json"] }
reqwest = { version = "0.11.1", features = ["blocking", "json"] }
# multipart/form-data support
multipart = { version = "0.17.1", features = ["server"], default-features = false }
@ -86,13 +86,13 @@ jsonwebtoken = "7.2.0"
u2f = "0.2.0"
# Yubico Library
yubico = { version = "0.9.2", features = ["online-tokio"], default-features = false }
yubico = { version = "0.10.0", features = ["online-tokio"], default-features = false }
# A `dotenv` implementation for Rust
dotenv = { version = "0.15.0", default-features = false }
# Lazy initialization
once_cell = "1.5.2"
once_cell = "1.7.0"
# Numerical libraries
num-traits = "0.2.14"
@ -100,10 +100,10 @@ num-derive = "0.3.3"
# Email libraries
lettre = { version = "0.10.0-alpha.5", features = ["smtp-transport", "builder", "serde", "native-tls", "hostname", "tracing"], default-features = false }
newline-converter = "0.1.0"
newline-converter = "0.2.0"
# Template library
handlebars = { version = "3.5.2", features = ["dir_source"] }
handlebars = { version = "3.5.3", features = ["dir_source"] }
# For favicon extraction from main website
html5ever = "0.25.1"
@ -117,7 +117,7 @@ openssl = "0.10.32"
# URL encoding library
percent-encoding = "2.1.0"
# Punycode conversion
idna = "0.2.1"
idna = "0.2.2"
# CLI argument parsing
pico-args = "0.4.0"