From 14e61df57896a37b0f88340dbba04a5489cbca1c Mon Sep 17 00:00:00 2001 From: Tamas Blummer Date: Thu, 22 Aug 2019 08:58:58 +0200 Subject: [PATCH] move rand feature of secp256k1 into dev-dependencies --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 702dc3231..657041454 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,10 +25,11 @@ byteorder = "1.2" bitcoin_hashes = "0.7" bitcoinconsensus = { version = "0.17", optional = true } serde = { version = "1", optional = true } -secp256k1 = { version = "0.15", features = ["rand"] } +secp256k1 = { version = "0.15" } hex = {version="=0.3.2"} [dev-dependencies] serde_derive = "<1.0.99" serde_json = "1" serde_test = "1" +secp256k1 = { version = "0.15", features = ["rand"] }