1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-08-17 00:12:31 +00:00

Update dependencies and bundle SQLite with the program, so we have one less dependency to install separately

This commit is contained in:
Daniel García 2018-05-07 21:33:54 +02:00
commit 8298795087
4 changed files with 167 additions and 161 deletions

View file

@ -5,9 +5,9 @@ authors = ["Daniel García <dani-garcia@users.noreply.github.com>"]
[dependencies]
# Web framework for nightly with a focus on ease-of-use, expressibility, and speed.
rocket = { version = "0.3.8", features = ["tls"] }
rocket_codegen = "0.3.8"
rocket_contrib = "0.3.8"
rocket = { version = "0.3.10", features = ["tls"] }
rocket_codegen = "0.3.10"
rocket_contrib = "0.3.10"
# HTTP client
reqwest = "0.8.5"
@ -16,14 +16,17 @@ reqwest = "0.8.5"
multipart = "0.14.2"
# A generic serialization/deserialization framework
serde = "1.0.43"
serde_derive = "1.0.43"
serde_json = "1.0.16"
serde = "1.0.48"
serde_derive = "1.0.48"
serde_json = "1.0.17"
# A safe, extensible ORM and Query builder
diesel = { version = "1.2.2", features = ["sqlite", "chrono", "r2d2"] }
diesel_migrations = { version = "1.2.0", features = ["sqlite"] }
# Bundled SQLite
libsqlite3-sys = { version = "0.9.1", features = ["bundled"] }
# Crypto library
ring = { version = "= 0.11.0", features = ["rsa_signing"] }