From 16de5efadd02c504c59d08fa973bb3055c56e50f Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Wed, 5 Oct 2022 13:25:54 +1100 Subject: [PATCH 1/2] Forward `std` feature to `sec1` --- elliptic-curve/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elliptic-curve/Cargo.toml b/elliptic-curve/Cargo.toml index 8a3a098ba..96ba1c1eb 100644 --- a/elliptic-curve/Cargo.toml +++ b/elliptic-curve/Cargo.toml @@ -54,7 +54,7 @@ hazmat = [] jwk = ["alloc", "base64ct/alloc", "serde", "serde_json", "zeroize/alloc"] pem = ["alloc", "arithmetic", "der/pem", "pem-rfc7468/alloc", "pkcs8", "sec1/pem"] serde = ["alloc", "pkcs8", "sec1/serde", "serdect"] -std = ["alloc", "rand_core/std"] +std = ["alloc", "rand_core/std", "sec1/std"] voprf = ["digest"] [package.metadata.docs.rs] From 362f353574e6d811c592d9234c7392ae9e4f8276 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Thu, 6 Oct 2022 10:43:39 +1100 Subject: [PATCH 2/2] Update CHANGELOG.md --- elliptic-curve/CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/elliptic-curve/CHANGELOG.md b/elliptic-curve/CHANGELOG.md index 975e749d4..619c175cd 100644 --- a/elliptic-curve/CHANGELOG.md +++ b/elliptic-curve/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased + +- Forward `std` feature to `sec1` dependency ([#1131]) + +[#1131]: https://github.com/RustCrypto/traits/pull/1131 + ## 0.12.3 (2022-08-01) ### Added - Aliases for SEC1 compressed/uncompressed points ([#1067])