1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-06-25 12:22:50 +00:00

Updated dependencies and removed some warnings from jsonwebtoken

This commit is contained in:
Daniel García 2018-06-01 15:34:26 +02:00
parent b0ee5f6570
commit b46e9c936d
4 changed files with 166 additions and 182 deletions

View file

@ -10,19 +10,19 @@ rocket_codegen = "0.3.12"
rocket_contrib = "0.3.12"
# HTTP client
reqwest = "0.8.5"
reqwest = "0.8.6"
# multipart/form-data support
multipart = "0.14.2"
# A generic serialization/deserialization framework
serde = "1.0.48"
serde_derive = "1.0.48"
serde_json = "1.0.17"
serde = "1.0.64"
serde_derive = "1.0.64"
serde_json = "1.0.19"
# A safe, extensible ORM and Query builder
diesel = { version = "1.2.2", features = ["sqlite", "chrono", "r2d2"] }
diesel_migrations = { version = "1.2.0", features = ["sqlite"] }
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"] }
@ -31,7 +31,7 @@ libsqlite3-sys = { version = "0.9.1", features = ["bundled"] }
ring = { version = "= 0.11.0", features = ["rsa_signing"] }
# UUID generation
uuid = { version = "0.6.3", features = ["v4"] }
uuid = { version = "0.6.5", features = ["v4"] }
# Date and time library for Rust
chrono = "0.4.2"
@ -43,13 +43,13 @@ oath = "0.10.2"
data-encoding = "2.1.1"
# JWT library
jsonwebtoken = "= 4.0.0"
jsonwebtoken = "= 4.0.1"
# A `dotenv` implementation for Rust
dotenv = { version = "0.11.0", default-features = false }
dotenv = { version = "0.13.0", default-features = false }
# Lazy static macro
lazy_static = "1.0.0"
lazy_static = "1.0.1"
[patch.crates-io]
jsonwebtoken = { path = "libs/jsonwebtoken" } # Make jwt use ring 0.11, to match rocket