1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-05-20 02:23:56 +00:00

Update web vault to 2022.8.1 and cargo dependencies

This commit is contained in:
Daniel García 2022-09-04 23:18:27 +02:00
parent 518d74ce21
commit a62dc102fb
No known key found for this signature in database
GPG key ID: FC8A7D14C3CD543A
19 changed files with 246 additions and 229 deletions

View file

@ -42,10 +42,10 @@ tracing = { version = "0.1.36", features = ["log"] } # Needed to have lettre and
backtrace = "0.3.66" # Logging panics to logfile instead stderr only
# A `dotenv` implementation for Rust
dotenvy = { version = "0.15.1", default-features = false }
dotenvy = { version = "=0.15.1", default-features = false }
# Lazy initialization
once_cell = "1.13.0"
once_cell = "1.14.0"
# Numerical libraries
num-traits = "0.2.15"
@ -57,15 +57,15 @@ rocket = { version = "0.5.0-rc.2", features = ["tls", "json"], default-features
# WebSockets libraries
tokio-tungstenite = "0.17.2"
rmpv = "1.0.0" # MessagePack library
dashmap = "5.3.4" # Concurrent hashmap implementation
dashmap = "5.4.0"
# Async futures
futures = "0.3.21"
tokio = { version = "1.20.1", features = ["rt-multi-thread", "fs", "io-util", "parking_lot", "time"] }
futures = "0.3.24"
tokio = { version = "1.21.0", features = ["rt-multi-thread", "fs", "io-util", "parking_lot", "time"] }
# A generic serialization/deserialization framework
serde = { version = "1.0.142", features = ["derive"] }
serde_json = "1.0.83"
serde = { version = "1.0.144", features = ["derive"] }
serde_json = "1.0.85"
# A safe, extensible ORM and Query builder
diesel = { version = "1.4.8", features = ["chrono", "r2d2"] }
@ -82,9 +82,9 @@ ring = "0.16.20"
uuid = { version = "1.1.2", features = ["v4"] }
# Date and time libraries
chrono = { version = "0.4.20", features = ["clock", "serde"], default-features = false }
chrono = { version = "0.4.22", features = ["clock", "serde"], default-features = false }
chrono-tz = "0.6.3"
time = "0.3.12"
time = "0.3.14"
# Job scheduler
job_scheduler_ng = "2.0.1"
@ -122,7 +122,7 @@ html5gum = "0.5.2"
regex = { version = "1.6.0", features = ["std", "perf", "unicode-perl"], default-features = false }
data-url = "0.1.1"
bytes = "1.2.1"
cached = "0.38.0"
cached = "0.39.0"
# Used for custom short lived cookie jar during favicon extraction
cookie = "0.16.0"
@ -135,11 +135,11 @@ openssl = "0.10.41"
pico-args = "0.5.0"
# Macro ident concatenation
paste = "1.0.8"
paste = "1.0.9"
governor = "0.4.2"
# Capture CTRL+C
ctrlc = { version = "3.2.2", features = ["termination"] }
ctrlc = { version = "3.2.3", features = ["termination"] }
# Allow overriding the default memory allocator
# Mainly used for the musl builds, since the default musl malloc is very slow