From 2eabb006600b48cf26ebfd5f4ec745fbfcb85289 Mon Sep 17 00:00:00 2001 From: kpcyrd Date: Wed, 15 Jul 2026 01:07:30 +0200 Subject: [PATCH] Make `dev` feature enable `der` feature, for use in tests --- ecdsa/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecdsa/Cargo.toml b/ecdsa/Cargo.toml index cb804e15..a1bc102e 100644 --- a/ecdsa/Cargo.toml +++ b/ecdsa/Cargo.toml @@ -39,7 +39,7 @@ alloc = ["elliptic-curve/alloc", "signature/alloc", "spki/alloc"] std = ["alloc", "elliptic-curve/std"] algorithm = ["dep:rfc6979", "digest", "elliptic-curve/arithmetic"] -dev = ["algorithm", "digest/dev", "elliptic-curve/dev"] +dev = ["algorithm", "der", "digest/dev", "elliptic-curve/dev"] der = ["dep:der"] digest = ["dep:digest", "elliptic-curve/digest", "signature/digest"] getrandom = ["elliptic-curve/getrandom"]