agate

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

commit 49bf5e94e3226e53a3df8f81522893130a03198a
parent 1a0ed8cf15b838fe0bd2a686a038e09e7fa18c6b
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue,  9 Jan 2024 10:19:54 +0000

chore(deps): bump rustls from 0.22.1 to 0.22.2

Bumps [rustls](https://github.com/rustls/rustls) from 0.22.1 to 0.22.2.
- [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.22.1...v/0.22.2)

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

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

diff --git a/Cargo.lock b/Cargo.lock @@ -33,7 +33,7 @@ dependencies = [ "once_cell", "percent-encoding", "rcgen", - "rustls 0.22.1", + "rustls 0.22.2", "tokio", "tokio-rustls 0.25.0", "url", @@ -498,9 +498,9 @@ dependencies = [ [[package]] name = "rustls" -version = "0.22.1" +version = "0.22.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe6b63262c9fcac8659abfaa96cac103d28166d3ff3eaf8f412e19f3ae9e5a48" +checksum = "e87c9956bd9807afa1f77e0f7594af32566e830e088a5576d27c5b6f30f49d41" dependencies = [ "log", "ring 0.17.7", @@ -518,9 +518,9 @@ checksum = "e7673e0aa20ee4937c6aacfc12bb8341cfbf054cdd21df6bec5fd0629fe9339b" [[package]] name = "rustls-webpki" -version = "0.102.0" +version = "0.102.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de2635c8bc2b88d367767c5de8ea1d8db9af3f6219eba28442242d9ab81d1b89" +checksum = "ef4ca26037c909dedb327b48c3327d0ba91d3dd3c4e05dad328f210ffb68e95b" dependencies = [ "ring 0.17.7", "rustls-pki-types", @@ -712,7 +712,7 @@ version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" dependencies = [ - "rustls 0.22.1", + "rustls 0.22.2", "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.0" } -rustls = "0.22.1" +rustls = "0.22.2" tokio-rustls = "0.25.0" tokio = { version = "1.35", features = ["fs", "io-util", "net", "rt-multi-thread", "sync"] } url = "2.5.0"