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

Updated dependencies and fixed errors

This commit is contained in:
Daniel García 2018-09-13 16:04:00 +02:00
parent a01fee0b9f
commit 928e2424c0
No known key found for this signature in database
GPG key ID: FC8A7D14C3CD543A
4 changed files with 365 additions and 136 deletions

View file

@ -13,7 +13,7 @@ rocket_contrib = "0.3.16"
reqwest = "0.8.8"
# multipart/form-data support
multipart = "0.15.2"
multipart = "0.15.3"
# WebSockets library
ws = "0.7.8"
@ -25,9 +25,9 @@ rmpv = "0.4.0"
chashmap = "2.2.0"
# A generic serialization/deserialization framework
serde = "1.0.75"
serde_derive = "1.0.75"
serde_json = "1.0.26"
serde = "1.0.77"
serde_derive = "1.0.77"
serde_json = "1.0.27"
# A safe, extensible ORM and Query builder
diesel = { version = "1.3.2", features = ["sqlite", "chrono", "r2d2"] }
@ -40,7 +40,7 @@ libsqlite3-sys = { version = "0.9.3", features = ["bundled"] }
ring = { version = "= 0.11.0", features = ["rsa_signing"] }
# UUID generation
uuid = { version = "0.6.5", features = ["v4"] }
uuid = { version = "0.7.0", features = ["v4"] }
# Date and time library for Rust
chrono = "0.4.6"