From 3b39147dfa40a6a5b40f68d9f2dce0615ef8c022 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Apr 2023 17:46:46 +0000 Subject: [PATCH] chore(deps): bump hyper-rustls from 0.23.2 to 0.24.0 Bumps [hyper-rustls](https://github.com/ctz/hyper-rustls) from 0.23.2 to 0.24.0. - [Release notes](https://github.com/ctz/hyper-rustls/releases) - [Commits](https://github.com/ctz/hyper-rustls/compare/v/0.23.2...v/0.24.0) --- updated-dependencies: - dependency-name: hyper-rustls dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 37 +++++++++++++++++++++++++++++-------- protocol/rtmp/Cargo.toml | 2 +- 2 files changed, 30 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 389dac2..6c2ca47 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -839,14 +839,14 @@ dependencies = [ [[package]] name = "hyper-rustls" -version = "0.23.2" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c" +checksum = "0646026eb1b3eea4cd9ba47912ea5ce9cc07713d105b1a14698f4e6433d348b7" dependencies = [ "http", "hyper", "log", - "rustls", + "rustls 0.21.0", "rustls-native-certs", "tokio", "tokio-rustls", @@ -1363,7 +1363,7 @@ dependencies = [ "hyper", "hyper-rustls", "rand", - "rustls", + "rustls 0.20.8", "serde", "serde_derive", "serde_json", @@ -1408,6 +1408,18 @@ dependencies = [ "webpki", ] +[[package]] +name = "rustls" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07180898a28ed6a7f7ba2311594308f595e3dd2e3c3812fa0a80a47b45f17e5d" +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" @@ -1806,13 +1828,12 @@ dependencies = [ [[package]] name = "tokio-rustls" -version = "0.23.4" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" +checksum = "e0d409377ff5b1e3ca6437aa86c1eb7d40c134bfec254e44c830defa92669db5" dependencies = [ - "rustls", + "rustls 0.21.0", "tokio", - "webpki", ] [[package]] diff --git a/protocol/rtmp/Cargo.toml b/protocol/rtmp/Cargo.toml index 8c8668f..531b28a 100644 --- a/protocol/rtmp/Cargo.toml +++ b/protocol/rtmp/Cargo.toml @@ -29,7 +29,7 @@ serde_json = { version = "1", default-features = false, features = [ serde = { version = "^1", optional = true, features = ["derive"] } serde_with = "2.3.2" rustls = "^0.20" -hyper-rustls = "^0.23" +hyper-rustls = "^0.24" bytesio = {path = "../../library/bytesio/"} xflv = {path = "../../library/container/flv/"}