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

Update Diesel to 1.4 and other dependencies

This commit is contained in:
Daniel García 2019-01-21 15:29:52 +01:00
commit ce42b07a80
No known key found for this signature in database
GPG key ID: FC8A7D14C3CD543A
3 changed files with 134 additions and 165 deletions

View file

@ -34,9 +34,9 @@ rmpv = "0.4.0"
chashmap = "2.2.0"
# A generic serialization/deserialization framework
serde = "1.0.84"
serde_derive = "1.0.84"
serde_json = "1.0.34"
serde = "1.0.85"
serde_derive = "1.0.85"
serde_json = "1.0.36"
# Logging
log = "0.4.6"
@ -44,11 +44,11 @@ fern = "0.5.7"
syslog = { version = "4.0.1", optional = true }
# A safe, extensible ORM and Query builder
diesel = { version = "1.3.3", features = ["sqlite", "chrono", "r2d2"] }
diesel_migrations = { version = "1.3.0", features = ["sqlite"] }
diesel = { version = "1.4.0", features = ["sqlite", "chrono", "r2d2"] }
diesel_migrations = { version = "1.4.0", features = ["sqlite"] }
# Bundled SQLite
libsqlite3-sys = { version = "0.9.3", features = ["bundled"] }
libsqlite3-sys = { version = "0.12.0", features = ["bundled"] }
# Crypto library
ring = { version = "0.13.5", features = ["rsa_signing"] }