From 45473f3b7f0c0df77d0528d91d1c6a20c46af1a4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Jun 2021 22:19:58 +0000 Subject: [PATCH] build(deps): bump reqwest from 0.11.0 to 0.11.4 Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.11.0 to 0.11.4. - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.0...v0.11.4) --- updated-dependencies: - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 11 ++++------- play/mbta/Cargo.toml | 2 +- src/ccsr/Cargo.toml | 2 +- src/materialized/Cargo.toml | 6 +++--- src/metabase/Cargo.toml | 2 +- src/sql/Cargo.toml | 2 +- src/testdrive/Cargo.toml | 2 +- test/smith/Cargo.toml | 2 +- 8 files changed, 13 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dca265b02ae84..c2fd2a4df97e3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2083,12 +2083,9 @@ dependencies = [ [[package]] name = "mime" -version = "0.3.13" +version = "0.3.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e27ca21f40a310bd06d9031785f4801710d566c184a6e15bad4f1d9b65f9425" -dependencies = [ - "unicase", -] +checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" [[package]] name = "miniz_oxide" @@ -3311,9 +3308,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.11.0" +version = "0.11.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd281b1030aa675fb90aa994d07187645bb3c8fc756ca766e7c3070b439de9de" +checksum = "246e9f61b9bb77df069a947682be06e31ac43ea37862e244a69f177694ea6d22" dependencies = [ "base64", "bytes", diff --git a/play/mbta/Cargo.toml b/play/mbta/Cargo.toml index 2444957349be2..3585444bc574d 100644 --- a/play/mbta/Cargo.toml +++ b/play/mbta/Cargo.toml @@ -15,7 +15,7 @@ ordered-float = { version = "2.1.1", features = ["serde"] } ore = { path = "../../src/ore" } parse_duration = "2.1.0" rdkafka = { git = "https://github.com/fede1024/rust-rdkafka.git", features = ["cmake-build", "libz-static"] } -reqwest = { version = "0.11.0", features = ["native-tls-vendored"] } +reqwest = { version = "0.11.4", features = ["native-tls-vendored"] } serde_json = "1.0.62" structopt = "0.3.21" test-util = { path = "../../test/test-util" } diff --git a/src/ccsr/Cargo.toml b/src/ccsr/Cargo.toml index d093038e3ffa7..31fe828fded21 100644 --- a/src/ccsr/Cargo.toml +++ b/src/ccsr/Cargo.toml @@ -9,7 +9,7 @@ publish = false futures = "0.3.12" native-tls = "0.2.7" openssl = { version = "0.10.32", features = ["vendored"] } -reqwest = { version = "0.11.0", features = ["blocking", "json", "native-tls-vendored"] } +reqwest = { version = "0.11.4", features = ["blocking", "json", "native-tls-vendored"] } serde = { version = "1.0.123", features = ["derive"] } serde_json = "1.0.62" url = { version = "2.2.0", features = ["serde"] } diff --git a/src/materialized/Cargo.toml b/src/materialized/Cargo.toml index 7a29c26b04cdd..d34c027e5acc1 100644 --- a/src/materialized/Cargo.toml +++ b/src/materialized/Cargo.toml @@ -64,7 +64,7 @@ prof = { path = "../prof", features = ["auto-jemalloc"] } prometheus = { git = "https://github.com/MaterializeInc/rust-prometheus.git", default-features = false } rdkafka-sys = { git = "https://github.com/fede1024/rust-rdkafka.git", features = ["cmake-build", "libz-static"] } repr = { path = "../repr" } -reqwest = { version = "0.11.0", features = ["json"] } +reqwest = { version = "0.11.4", features = ["json"] } rlimit = "0.5.3" semver = "0.11.0" serde = { version = "1.0.123", features = ["derive"] } @@ -109,7 +109,7 @@ postgres-protocol = "0.6.0" postgres_array = "0.11.0" predicates = "1.0.7" repr = { path = "../repr" } -reqwest = { version = "0.11.0", features = ["blocking"] } +reqwest = { version = "0.11.4", features = ["blocking"] } serde_json = "1.0.62" tokio-postgres = { version = "0.7.0", features = ["with-chrono-0_4"] } @@ -118,7 +118,7 @@ anyhow = "1.0.38" flate2 = "1.0.20" hex = "0.4.2" hex-literal = "0.3.1" -reqwest = { version = "0.11.0", features = ["blocking"] } +reqwest = { version = "0.11.4", features = ["blocking"] } sha2 = "0.9.3" tar = "0.4.30" walkdir = "2.3.1" diff --git a/src/metabase/Cargo.toml b/src/metabase/Cargo.toml index 627e15772a6e0..aae083d3abd23 100644 --- a/src/metabase/Cargo.toml +++ b/src/metabase/Cargo.toml @@ -6,5 +6,5 @@ edition = "2018" publish = false [dependencies] -reqwest = "0.11.0" +reqwest = "0.11.4" serde = { version = "1.0.123", features = ["derive"] } diff --git a/src/sql/Cargo.toml b/src/sql/Cargo.toml index aa00496ffccf9..ae42aea52682c 100644 --- a/src/sql/Cargo.toml +++ b/src/sql/Cargo.toml @@ -29,7 +29,7 @@ postgres-types = { version = "0.2.0", features = ["with-chrono-0_4", "with-uuid- rdkafka = { git = "https://github.com/fede1024/rust-rdkafka.git", features = ["cmake-build", "ssl-vendored", "gssapi-vendored", "libz-static"] } regex = "1.4.3" repr = { path = "../repr" } -reqwest = "0.11.0" +reqwest = "0.11.4" rusoto_core = { git = "https://github.com/rusoto/rusoto.git" } serde = { version = "1.0.123", features = ["derive"] } serde_json = "1.0.62" diff --git a/src/testdrive/Cargo.toml b/src/testdrive/Cargo.toml index c06f908796d44..eb5a51b2f09a3 100644 --- a/src/testdrive/Cargo.toml +++ b/src/testdrive/Cargo.toml @@ -32,7 +32,7 @@ rand = "0.8.3" rdkafka = { git = "https://github.com/fede1024/rust-rdkafka.git", features = ["cmake-build", "libz-static"] } regex = "1.4.3" repr = { path = "../repr" } -reqwest = { version = "0.11.0", features = ["native-tls-vendored"] } +reqwest = { version = "0.11.4", features = ["native-tls-vendored"] } rusoto_core = { git = "https://github.com/rusoto/rusoto.git" } rusoto_credential = { git = "https://github.com/rusoto/rusoto.git" } rusoto_kinesis = { git = "https://github.com/rusoto/rusoto.git" } diff --git a/test/smith/Cargo.toml b/test/smith/Cargo.toml index 5054fd7ebbefb..9153ea141773e 100644 --- a/test/smith/Cargo.toml +++ b/test/smith/Cargo.toml @@ -12,7 +12,7 @@ futures = "0.3.12" futures-channel = "0.3.5" log = "0.4.13" postgres-types = "0.2.0" -reqwest = { version = "0.11.0", features = ["json"] } +reqwest = { version = "0.11.4", features = ["json"] } serde = { version = "1.0.123", features = ["derive"] } serde_json = "1.0.62" structopt = "0.3.21"