From 29f2e307186841e328c076374be0206823bccf83 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Feb 2025 23:13:31 +0000 Subject: [PATCH] Bump the mycelium group with 2 updates Bumps the mycelium group with 2 updates: [rustls](https://github.com/rustls/rustls) and [openssl](https://github.com/sfackler/rust-openssl). Updates `rustls` from 0.23.22 to 0.23.23 - [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.22...v/0.23.23) Updates `openssl` from 0.10.70 to 0.10.71 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.70...openssl-v0.10.71) --- updated-dependencies: - dependency-name: rustls dependency-type: direct:production update-type: version-update:semver-patch dependency-group: mycelium - dependency-name: openssl dependency-type: direct:production update-type: version-update:semver-patch dependency-group: mycelium ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 ++++++------ mycelium/Cargo.toml | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 99132bf..21ce9e3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1466,9 +1466,9 @@ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" [[package]] name = "openssl" -version = "0.10.70" +version = "0.10.71" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61cfb4e166a8bb8c9b55c500bc2308550148ece889be90f609377e58140f42c6" +checksum = "5e14130c6a98cd258fdcb0fb6d744152343ff729cbfcb28c656a9d12b999fbcd" dependencies = [ "bitflags", "cfg-if", @@ -1501,9 +1501,9 @@ dependencies = [ [[package]] name = "openssl-sys" -version = "0.9.105" +version = "0.9.106" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b22d5b84be05a8d6947c7cb71f7c849aa0f112acd4bf51c2a7c1c988ac0a9dc" +checksum = "8bb61ea9811cc39e3c2069f40b8b8e2e70d8569b361f879786cc7ed48b777cdd" dependencies = [ "cc", "libc", @@ -2101,9 +2101,9 @@ dependencies = [ [[package]] name = "rustls" -version = "0.23.22" +version = "0.23.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fb9263ab4eb695e42321db096e3b8fbd715a59b154d5c88d82db2175b681ba7" +checksum = "47796c98c480fce5406ef69d1c76378375492c3b0a0de587be0c1d9feb12f395" dependencies = [ "once_cell", "ring", diff --git a/mycelium/Cargo.toml b/mycelium/Cargo.toml index 6e88982..2c6de39 100644 --- a/mycelium/Cargo.toml +++ b/mycelium/Cargo.toml @@ -43,10 +43,10 @@ quinn = { version = "0.11.6", default-features = false, features = [ "runtime-tokio", "rustls", ] } -rustls = { version = "0.23.22", default-features = false, features = ["ring"] } +rustls = { version = "0.23.23", default-features = false, features = ["ring"] } rcgen = "0.13.2" netdev = "0.32.0" -openssl = { version = "0.10.70", optional = true } +openssl = { version = "0.10.71", optional = true } tokio-openssl = { version = "0.6.5", optional = true } arc-swap = "1.7.1" dashmap = { version = "6.1.0", features = ["inline"] }