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

322
Cargo.lock generated

File diff suppressed because it is too large Load Diff

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

View File

@ -1,6 +1,6 @@
[package]
name = "jsonwebtoken"
version = "4.0.0"
version = "4.0.1"
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
license = "MIT"
readme = "README.md"
@ -15,6 +15,6 @@ serde_json = "1.0"
serde_derive = "1.0"
serde = "1.0"
ring = { version = "0.11.0", features = ["rsa_signing", "dev_urandom_fallback"] }
base64 = "0.8"
base64 = "0.9"
untrusted = "0.5"
chrono = "0.4"

View File

@ -3,6 +3,8 @@
//! Documentation: [stable](https://docs.rs/jsonwebtoken/)
#![recursion_limit = "300"]
#![deny(missing_docs)]
#![allow(unused_doc_comments)]
#![allow(renamed_and_removed_lints)]
#[macro_use]
extern crate error_chain;