From c20c09845f067b41b670bdb194ce0174f3bec329 Mon Sep 17 00:00:00 2001 From: Dmitry Baryshkov Date: Sun, 16 Apr 2023 14:31:51 +0300 Subject: [PATCH] x509-cert: don't require signature's 'derive' feature There are no dependencies on the "derive" featue of the signature crate. Drop it now. Signed-off-by: Dmitry Baryshkov --- x509-cert/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x509-cert/Cargo.toml b/x509-cert/Cargo.toml index 8d74686d6..f216f6211 100644 --- a/x509-cert/Cargo.toml +++ b/x509-cert/Cargo.toml @@ -22,7 +22,7 @@ spki = { version = "0.7.1", features = ["alloc"] } # optional dependencies arbitrary = { version = "1.3", features = ["derive"], optional = true } sha1 = { version = "0.10.0", optional = true } -signature = { version = "2.1.0", features = ["digest"], optional = true } +signature = { version = "2.1.0", optional = true } [dev-dependencies] hex-literal = "0.4"