From 98738cf464243b77902ef36f985312abb8b140a7 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Tue, 6 Jul 2021 06:18:50 +0000 Subject: [PATCH] Bump oauth2 from 4.0.0-alpha.3 to 4.1.0 Bumps [oauth2](https://github.com/ramosbugs/oauth2-rs) from 4.0.0-alpha.3 to 4.1.0. - [Release notes](https://github.com/ramosbugs/oauth2-rs/releases) - [Commits](https://github.com/ramosbugs/oauth2-rs/compare/4.0.0-alpha.3...4.1.0) Signed-off-by: dependabot-preview[bot] --- Cargo.lock | 21 +++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e623177..f164c32 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1107,7 +1107,9 @@ checksum = "ee8025cf36f917e6a52cce185b7c7177689b838b7ec138364e50cc2277a56cf4" dependencies = [ "cfg-if 0.1.10", "libc", + "stdweb", "wasi 0.9.0+wasi-snapshot-preview1", + "wasm-bindgen", ] [[package]] @@ -1704,17 +1706,19 @@ dependencies = [ [[package]] name = "oauth2" -version = "4.0.0-alpha.3" +version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14be0cf9da49c1a5b2909ec626949dc549e0adda4e9e7f26e4908f08a5435227" +checksum = "80e47cfc4c0a1a519d9a025ebfbac3a2439d1b5cdf397d72dcb79b11d9920dab" dependencies = [ - "base64 0.12.3", + "base64 0.13.0", "chrono", + "getrandom 0.2.0", "http", - "rand 0.7.3", + "rand 0.8.0", "reqwest", "serde", "serde_json", + "serde_path_to_error", "sha2", "thiserror", "url", @@ -2338,6 +2342,15 @@ dependencies = [ "serde", ] +[[package]] +name = "serde_path_to_error" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42f6109f0506e20f7e0f910e51a0079acf41da8e0694e6442527c4ddf5a2b158" +dependencies = [ + "serde", +] + [[package]] name = "serde_qs" version = "0.7.2" diff --git a/Cargo.toml b/Cargo.toml index 4bb959f..9e5a9e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ tera = "1.6.1" tide-tera = "0.2.3" # AUTH CRATES -oauth2 = { version = "4.0.0-alpha.3" } +oauth2 = { version = "4.1.0" } tide-secure-cookie-session = { git = "https://github.com/pepoviola/tide-secure-cookie-session.git", branch = "bump-tide-0.15" } surf = { version = "2.1.0" } failure = "0.1.8"