From efc8a253386f24f095b4f3fc4c4b58ec8c9e65c9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 19 Jan 2023 21:04:59 +0000 Subject: [PATCH] fix(deps): update rust crate reqwest to 0.11.14 --- Cargo.lock | 14 ++++++++++---- Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 29452c1..341731d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -110,6 +110,12 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" +[[package]] +name = "base64" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" + [[package]] name = "binascii" version = "0.1.4" @@ -1013,12 +1019,12 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.11.13" +version = "0.11.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68cc60575865c7831548863cc02356512e3f1dc2f3f82cb837d7fc4cc8f3c97c" +checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9" dependencies = [ "async-compression", - "base64", + "base64 0.21.0", "bytes", "encoding_rs", "futures-core", @@ -1186,7 +1192,7 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55" dependencies = [ - "base64", + "base64 0.13.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 0e67b02..7e19129 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ diesel_migrations = "2.0.0" lazy_static = "1.4.0" num_cpus = "1.15.0" regex = "1.7.1" -reqwest = {version = "0.11.13", features = ["json", "rustls-tls", "gzip", "brotli"], default-features = false} +reqwest = {version = "0.11.14", features = ["json", "rustls-tls", "gzip", "brotli"], default-features = false} rocket = {git = "https://github.com/SergioBenitez/Rocket"} rocket_sync_db_pools = {git = "https://github.com/SergioBenitez/Rocket", features = ["diesel_postgres_pool"]} serde = {version = "1.0.152", features = ["derive"]}