agate

Simple gemini server for static files
git clone https://github.com/mbrubeck/agate.git
Log | Files | Refs | README

commit a0ded1f05e6d833bdcffea4c7d074940009b2495
parent 06aa136afdc2ba0f16014ec73626975cbdb21b92
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Fri, 22 Mar 2024 10:51:57 +0000

chore(deps): bump tokio-rustls from 0.25.0 to 0.26.0

Bumps [tokio-rustls](https://github.com/rustls/tokio-rustls) from 0.25.0 to 0.26.0.
- [Release notes](https://github.com/rustls/tokio-rustls/releases)
- [Commits](https://github.com/rustls/tokio-rustls/compare/v/0.25.0...v/0.26.0)

---
updated-dependencies:
- dependency-name: tokio-rustls
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Diffstat:
MCargo.lock | 13+++++++------
MCargo.toml | 2+-
2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock @@ -34,7 +34,7 @@ dependencies = [ "percent-encoding", "rcgen", "tokio", - "tokio-rustls 0.25.0", + "tokio-rustls 0.26.0", "url", ] @@ -502,11 +502,12 @@ dependencies = [ [[package]] name = "rustls" -version = "0.22.2" +version = "0.23.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e87c9956bd9807afa1f77e0f7594af32566e830e088a5576d27c5b6f30f49d41" +checksum = "1b3818d6051afeb6f88412bc8693cf8219799b2f2c2365f15e7534f0e198a16c" dependencies = [ "log", + "once_cell", "ring 0.17.8", "rustls-pki-types", "rustls-webpki", @@ -704,11 +705,11 @@ dependencies = [ [[package]] name = "tokio-rustls" -version = "0.25.0" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" +checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" dependencies = [ - "rustls 0.22.2", + "rustls 0.23.3", "rustls-pki-types", "tokio", ] diff --git a/Cargo.toml b/Cargo.toml @@ -22,7 +22,7 @@ mime_guess = "2.0" once_cell = "1.19" percent-encoding = "2.3" rcgen = { version = "0.12.1", default-features = false, features = ["ring"] } -tokio-rustls = { version = "0.25.0", default-features = false, features = ["logging", "ring", "tls12"] } +tokio-rustls = { version = "0.26.0", default-features = false, features = ["logging", "ring", "tls12"] } tokio = { version = "1.36", features = ["fs", "io-util", "net", "rt-multi-thread", "sync"] } url = "2.5.0"