From 72d5a85efca608006b77a9ec7e009e67af53405b Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sat, 27 Apr 2024 05:54:32 -0400 Subject: [PATCH] Add transcript/std feature to generalized-schnorr --- crypto/generalized-schnorr/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/generalized-schnorr/Cargo.toml b/crypto/generalized-schnorr/Cargo.toml index 4d54b7e7..66022e78 100644 --- a/crypto/generalized-schnorr/Cargo.toml +++ b/crypto/generalized-schnorr/Cargo.toml @@ -38,5 +38,5 @@ transcript = { package = "flexible-transcript", path = "../transcript", features ciphersuite = { path = "../ciphersuite", features = ["ed25519"] } [features] -std = ["std-shims/std", "rand_core/std", "zeroize/std", "ciphersuite/std", "multiexp/std"] +std = ["std-shims/std", "rand_core/std", "zeroize/std", "transcript/std", "ciphersuite/std", "multiexp/std"] default = ["std"]