fix(deps): update rust crate reqwest to 0.11.14

This commit is contained in:
renovate[bot] 2023-01-19 21:04:59 +00:00
parent 8c7076d95d
commit efc8a25338
2 changed files with 11 additions and 5 deletions

14
Cargo.lock generated
View file

@ -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]]

View file

@ -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"]}