From 9ff70d2d7f3ca2dd328d5111c6ffa8e34c925415 Mon Sep 17 00:00:00 2001 From: Rodolphe Breard Date: Sat, 30 Mar 2019 13:41:20 +0100 Subject: [PATCH] Fix the invalid CSR generation Due to a bug in the `acme-lib` dependency, the Certificate Signing Request was not built correctly. This issue caused the ACME server to reject such CSR when ordiring more than two domains. algesten/acme-lib#3 --- acmed/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acmed/Cargo.toml b/acmed/Cargo.toml index 8cda265..92969a1 100644 --- a/acmed/Cargo.toml +++ b/acmed/Cargo.toml @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0" include = ["src/**/*", "Cargo.toml", "LICENSE-*.txt"] [dependencies] -acme-lib = "0.4" +acme-lib = "0.5" clap = "2.32" daemonize = "0.3" env_logger = "0.6"