1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-05-18 09:33:56 +00:00

Update dependencies to use newer SQLite

This commit is contained in:
Daniel García 2019-10-11 22:49:47 +02:00
parent f482585d7c
commit d3bd2774dc
No known key found for this signature in database
GPG key ID: FC8A7D14C3CD543A
2 changed files with 51 additions and 83 deletions

View file

@ -26,7 +26,7 @@ rocket = { version = "0.5.0-dev", features = ["tls"], default-features = false }
rocket_contrib = "0.5.0-dev"
# HTTP client
reqwest = "0.9.21"
reqwest = "0.9.22"
# multipart/form-data support
multipart = { version = "0.16.1", features = ["server"], default-features = false }
@ -35,7 +35,7 @@ multipart = { version = "0.16.1", features = ["server"], default-features = fals
ws = "0.9.0"
# MessagePack library
rmpv = "0.4.1"
rmpv = "0.4.2"
# Concurrent hashmap implementation
chashmap = "2.2.2"
@ -50,11 +50,11 @@ log = "0.4.8"
fern = { version = "0.5.8", features = ["syslog-4"] }
# A safe, extensible ORM and Query builder
diesel = { version = "1.4.2", features = [ "chrono", "r2d2"] }
diesel = { version = "1.4.3", features = [ "chrono", "r2d2"] }
diesel_migrations = "1.4.0"
# Bundled SQLite
libsqlite3-sys = { version = "0.12.0", features = ["bundled"], optional = true }
libsqlite3-sys = { version = "0.16.0", features = ["bundled"], optional = true }
# Crypto library
ring = "0.14.6"