From ecb3d6dc77b8cdaed1fa7e57ca5b7d1723fe97cf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Mar 2021 10:05:50 +0000 Subject: [PATCH] build(deps): bump reqwest from 0.9.24 to 0.11.2 Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.9.24 to 0.11.2. - [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.9.24...v0.11.2) Signed-off-by: dependabot[bot] --- Cargo.lock | 161 ++++++++++++++++++++++++++++++++-- integrations/gmail/Cargo.toml | 2 +- 2 files changed, 157 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 46826f38a..29539e350 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -899,7 +899,7 @@ dependencies = [ "google_api_auth", "log", "mailparse", - "reqwest", + "reqwest 0.11.2", "serde", "serde_derive", "serde_json", @@ -1232,7 +1232,7 @@ dependencies = [ "google_field_selector", "mime", "percent-encoding 2.1.0", - "reqwest", + "reqwest 0.9.24", "serde", "serde_json", "textnonce", @@ -1309,11 +1309,30 @@ dependencies = [ "indexmap", "slab", "tokio 0.2.25", - "tokio-util", + "tokio-util 0.3.1", "tracing", "tracing-futures", ] +[[package]] +name = "h2" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d832b01df74254fe364568d6ddc294443f61cbec82816b60904303af87efae78" +dependencies = [ + "bytes 1.0.1", + "fnv", + "futures-core", + "futures-sink", + "futures-util", + "http 0.2.3", + "indexmap", + "slab", + "tokio 1.2.0", + "tokio-util 0.6.4", + "tracing", +] + [[package]] name = "hashbrown" version = "0.9.1" @@ -1403,6 +1422,16 @@ dependencies = [ "http 0.2.3", ] +[[package]] +name = "http-body" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2861bd27ee074e5ee891e8b539837a9430012e249d7f0ca2d795650f579c1994" +dependencies = [ + "bytes 1.0.1", + "http 0.2.3", +] + [[package]] name = "httparse" version = "1.3.5" @@ -1475,6 +1504,30 @@ dependencies = [ "want 0.3.0", ] +[[package]] +name = "hyper" +version = "0.14.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8e946c2b1349055e0b72ae281b238baf1a3ea7307c7e9f9d64673bdd9c26ac7" +dependencies = [ + "bytes 1.0.1", + "futures-channel", + "futures-core", + "futures-util", + "h2 0.3.1", + "http 0.2.3", + "http-body 0.4.0", + "httparse", + "httpdate", + "itoa", + "pin-project 1.0.5", + "socket2", + "tokio 1.2.0", + "tower-service", + "tracing", + "want 0.3.0", +] + [[package]] name = "hyper-rustls" version = "0.17.1" @@ -1510,6 +1563,21 @@ dependencies = [ "webpki", ] +[[package]] +name = "hyper-rustls" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f9f7a97316d44c0af9b0301e65010573a853a9fc97046d7331d7f6bc0fd5a64" +dependencies = [ + "futures-util", + "hyper 0.14.4", + "log", + "rustls 0.19.0", + "tokio 1.2.0", + "tokio-rustls 0.22.0", + "webpki", +] + [[package]] name = "idna" version = "0.1.5" @@ -2883,7 +2951,7 @@ dependencies = [ "rustls 0.16.0", "serde", "serde_json", - "serde_urlencoded", + "serde_urlencoded 0.5.5", "time", "tokio 0.1.22", "tokio-executor", @@ -2894,7 +2962,42 @@ dependencies = [ "url 1.7.2", "uuid 0.7.4", "webpki-roots 0.17.0", - "winreg", + "winreg 0.6.2", +] + +[[package]] +name = "reqwest" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf12057f289428dbf5c591c74bf10392e4a8003f993405a902f20117019022d4" +dependencies = [ + "base64 0.13.0", + "bytes 1.0.1", + "encoding_rs", + "futures-core", + "futures-util", + "http 0.2.3", + "http-body 0.4.0", + "hyper 0.14.4", + "hyper-rustls 0.22.1", + "ipnet", + "js-sys", + "lazy_static", + "log", + "mime", + "percent-encoding 2.1.0", + "pin-project-lite 0.2.4", + "rustls 0.19.0", + "serde", + "serde_urlencoded 0.7.0", + "tokio 1.2.0", + "tokio-rustls 0.22.0", + "url 2.2.1", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "webpki-roots 0.21.0", + "winreg 0.7.0", ] [[package]] @@ -3129,6 +3232,18 @@ dependencies = [ "url 1.7.2", ] +[[package]] +name = "serde_urlencoded" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + [[package]] name = "serde_yaml" version = "0.8.17" @@ -3638,6 +3753,17 @@ dependencies = [ "webpki", ] +[[package]] +name = "tokio-rustls" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6" +dependencies = [ + "rustls 0.19.0", + "tokio 1.2.0", + "webpki", +] + [[package]] name = "tokio-stream" version = "0.1.3" @@ -3716,6 +3842,20 @@ dependencies = [ "tokio 0.2.25", ] +[[package]] +name = "tokio-util" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec31e5cc6b46e653cf57762f36f71d5e6386391d88a72fd6db4508f8f676fb29" +dependencies = [ + "bytes 1.0.1", + "futures-core", + "futures-sink", + "log", + "pin-project-lite 0.2.4", + "tokio 1.2.0", +] + [[package]] name = "toml" version = "0.5.8" @@ -4001,6 +4141,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ee1280240b7c461d6a0071313e08f34a60b0365f14260362e5a2b17d1d31aa7" dependencies = [ "cfg-if 1.0.0", + "serde", + "serde_json", "wasm-bindgen-macro", ] @@ -4175,6 +4317,15 @@ dependencies = [ "winapi 0.3.9", ] +[[package]] +name = "winreg" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69" +dependencies = [ + "winapi 0.3.9", +] + [[package]] name = "ws2_32-sys" version = "0.2.1" diff --git a/integrations/gmail/Cargo.toml b/integrations/gmail/Cargo.toml index 57e5356d2..ba0a49ec8 100644 --- a/integrations/gmail/Cargo.toml +++ b/integrations/gmail/Cargo.toml @@ -15,7 +15,7 @@ google-gmail1 = {git = "https://github.com/appaquet/generated.git", branch = "gm google_api_auth = {git = "https://github.com/google-apis-rs/generator", features = ["with-yup-oauth2"]} log = "0.4" mailparse = "0.13" -reqwest = {version = "0.9", default-features = false, features = ["rustls-tls"]}# to prevent linking w/ openssl +reqwest = {version = "0.11", default-features = false, features = ["rustls-tls"]}# to prevent linking w/ openssl serde = "1.0" serde_derive = "1.0" serde_json = "1.0"