From fe828d040d31bdd42840b6a11f76cfa0bb2fcc8b Mon Sep 17 00:00:00 2001 From: Andrew Poelstra Date: Fri, 13 Jan 2023 14:04:23 +0000 Subject: [PATCH] add redundant features for cargo 1.41 bug --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 724c195..0420855 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,8 +23,8 @@ std = ["alloc", "secp256k1-sys/std"] # allow use of Secp256k1::new and related API that requires an allocator alloc = ["secp256k1-sys/alloc"] bitcoin-hashes = ["bitcoin_hashes"] # Feature alias because of the underscore. -bitcoin-hashes-std = ["std", "bitcoin_hashes/std"] -rand-std = ["std", "rand/std", "rand/std_rng"] +bitcoin-hashes-std = ["std", "bitcoin_hashes", "bitcoin_hashes/std"] +rand-std = ["std", "rand", "rand/std", "rand/std_rng"] recovery = ["secp256k1-sys/recovery"] lowmemory = ["secp256k1-sys/lowmemory"] global-context = ["std"]