From 2a0f447bf0635761bb701db7cd820fa068c68cde Mon Sep 17 00:00:00 2001 From: Luiz Fonseca Date: Sat, 19 Oct 2024 02:51:05 +0200 Subject: [PATCH] fix: panic when handling certificate dates that contain space-padded days --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 986d28b..9ca3409 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -17,9 +17,9 @@ dependencies = [ [[package]] name = "acme-v2" -version = "0.9.2" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5653f39f32fed21132682ef47864f4d2f0d488676a15e41592f24354a3d0d8a4" +checksum = "3336fdb41c82ec6b00ba52a8cbde887f1d3c8f38c88ffd46af323f4c2036a92a" dependencies = [ "base64 0.22.1", "lazy_static", diff --git a/Cargo.toml b/Cargo.toml index ed76a35..a95060d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,7 +43,7 @@ panic = "abort" # Abort on panic. [dependencies] TinyUFO = "0.3.0" -acme-v2 = "0.9.2" +acme-v2 = "0.9.3" anyhow = "1.0.89" arc-swap = "1.7.1" async-trait = "0.1.83"