From ce38a412269ed2efaa9e9511ae733598515af968 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Apr 2021 05:48:52 +0000 Subject: [PATCH] Bump rustls from 0.16.0 to 0.19.1 Bumps [rustls](https://github.com/ctz/rustls) from 0.16.0 to 0.19.1. - [Release notes](https://github.com/ctz/rustls/releases) - [Changelog](https://github.com/ctz/rustls/blob/main/OLDCHANGES.md) - [Commits](https://github.com/ctz/rustls/compare/v/0.16.0...v/0.19.1) Signed-off-by: dependabot[bot] --- Cargo.lock | 29 ++++++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 25 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c30967c..6e9383e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -55,7 +55,7 @@ dependencies = [ "futures", "http", "log", - "rustls", + "rustls 0.16.0", "tokio-rustls", "trust-dns-proto 0.18.0-alpha.2", "trust-dns-resolver 0.18.0-alpha.2", @@ -173,7 +173,7 @@ dependencies = [ "either", "futures", "log", - "rustls", + "rustls 0.16.0", "tokio-rustls", "webpki", "webpki-roots 0.17.0", @@ -293,7 +293,7 @@ dependencies = [ "mime", "percent-encoding", "rand", - "rustls", + "rustls 0.16.0", "serde", "serde_json", "serde_urlencoded", @@ -334,6 +334,12 @@ version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff" +[[package]] +name = "base64" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" + [[package]] name = "bitflags" version = "1.2.1" @@ -1477,6 +1483,19 @@ dependencies = [ "webpki", ] +[[package]] +name = "rustls" +version = "0.19.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7" +dependencies = [ + "base64 0.13.0", + "log", + "ring", + "sct", + "webpki", +] + [[package]] name = "ryu" version = "1.0.5" @@ -1758,7 +1777,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3068d891551949b37681724d6b73666787cc63fa8e255c812a41d2513aff9775" dependencies = [ "futures-core", - "rustls", + "rustls 0.16.0", "tokio", "webpki", ] @@ -2106,7 +2125,7 @@ dependencies = [ "crossbeam-channel 0.5.0", "futures", "reqwest", - "rustls", + "rustls 0.19.1", "serde", "serde_json", "tokio", diff --git a/Cargo.toml b/Cargo.toml index ac02f8c..fee2d4a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ bytes = "0.5.6" actix-rt = "1.1.1" tokio = { version = "0.2.22", features = ["process"] } tokio-util = { version = "0.3.1", features = ["codec"] } -rustls = "0.16" +rustls = "0.19" webpki-roots = "0.19.0" clap = "2.33.3" crossbeam-channel = "0.5.0"