From 1fedeaea091fa91920ec68f93d6d1cb7ea65666d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 2 Feb 2025 01:29:39 +0000 Subject: [PATCH] build(deps): bump rustls from 0.23.21 to 0.23.22 Bumps [rustls](https://github.com/rustls/rustls) from 0.23.21 to 0.23.22. - [Release notes](https://github.com/rustls/rustls/releases) - [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustls/rustls/compare/v/0.23.21...v/0.23.22) --- updated-dependencies: - dependency-name: rustls dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- frostd/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7cb2b41..5d80321 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3324,9 +3324,9 @@ dependencies = [ [[package]] name = "rustls" -version = "0.23.21" +version = "0.23.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8" +checksum = "9fb9263ab4eb695e42321db096e3b8fbd715a59b154d5c88d82db2175b681ba7" dependencies = [ "aws-lc-rs", "log", diff --git a/frostd/Cargo.toml b/frostd/Cargo.toml index ea8ab5d..c1bcc9e 100644 --- a/frostd/Cargo.toml +++ b/frostd/Cargo.toml @@ -42,7 +42,7 @@ thiserror = "2.0.11" # - compiling just frostd does not require reqwest, but it tries to initialize # the ring CryptoProvider, which is not available. # For this reason we just simply always enable ring. -rustls = { version = "0.23.21", features = ["ring"] } +rustls = { version = "0.23.22", features = ["ring"] } [dev-dependencies] axum-test = "16.4.1"