From d6c5e7864a06400274f0de9ea1af5fd3d34a62d3 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Tue, 28 Nov 2023 17:55:36 +0100 Subject: [PATCH] hpke-rs-rust-crypto: make deterministic-prng enable the std feature --- rust_crypto_provider/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust_crypto_provider/Cargo.toml b/rust_crypto_provider/Cargo.toml index fd2fdc8..358ecab 100644 --- a/rust_crypto_provider/Cargo.toml +++ b/rust_crypto_provider/Cargo.toml @@ -28,7 +28,7 @@ criterion = { version = "0.5", features = ["html_reports"] } rand = { version = "0.8" } [features] -deterministic-prng = [] # ⚠️ FOR TESTING ONLY. +deterministic-prng = ["hpke-rs-crypto/std"] # ⚠️ FOR TESTING ONLY. [[bench]] name = "bench_hkdf"