From 6ab08fc0d23c156d056e789ca3126de984a69785 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 Jun 2023 04:03:46 +0000 Subject: [PATCH] chore(deps): bump rustls from 0.20.8 to 0.21.2 Bumps [rustls](https://github.com/rustls/rustls) from 0.20.8 to 0.21.2. - [Changelog](https://github.com/rustls/rustls/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/rustls/rustls/compare/v/0.20.8...v/0.21.2) --- updated-dependencies: - dependency-name: rustls dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 28 +++++++++++++++++++++++++--- protocol/rtmp/Cargo.toml | 2 +- 2 files changed, 26 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 389dac2..a1a47e4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -846,7 +846,7 @@ dependencies = [ "http", "hyper", "log", - "rustls", + "rustls 0.20.8", "rustls-native-certs", "tokio", "tokio-rustls", @@ -1363,7 +1363,7 @@ dependencies = [ "hyper", "hyper-rustls", "rand", - "rustls", + "rustls 0.21.2", "serde", "serde_derive", "serde_json", @@ -1408,6 +1408,18 @@ dependencies = [ "webpki", ] +[[package]] +name = "rustls" +version = "0.21.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e32ca28af694bc1bbf399c33a516dbdf1c90090b8ab23c2bc24f834aa2247f5f" +dependencies = [ + "log", + "ring", + "rustls-webpki", + "sct", +] + [[package]] name = "rustls-native-certs" version = "0.6.2" @@ -1429,6 +1441,16 @@ dependencies = [ "base64 0.21.0", ] +[[package]] +name = "rustls-webpki" +version = "0.100.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b" +dependencies = [ + "ring", + "untrusted", +] + [[package]] name = "rustversion" version = "1.0.12" @@ -1810,7 +1832,7 @@ version = "0.23.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" dependencies = [ - "rustls", + "rustls 0.20.8", "tokio", "webpki", ] diff --git a/protocol/rtmp/Cargo.toml b/protocol/rtmp/Cargo.toml index 8c8668f..b5046ae 100644 --- a/protocol/rtmp/Cargo.toml +++ b/protocol/rtmp/Cargo.toml @@ -28,7 +28,7 @@ serde_json = { version = "1", default-features = false, features = [ ] } serde = { version = "^1", optional = true, features = ["derive"] } serde_with = "2.3.2" -rustls = "^0.20" +rustls = "^0.21" hyper-rustls = "^0.23" bytesio = {path = "../../library/bytesio/"}