Skip to content

Commit 39d427f

Browse files
committed
Merge rust-bitcoin#4971: Do not enable secp rand feature
bd3c5f5 Do not enable secp rand feature (Tobin C. Harding) Pull request description: Patch f80cf2c (PR rust-bitcoin#4154) somehow got past review with a change that unconditionally enabled `rand` feature for `secp256k1` - this is incorrect. There is no mention of the change in the PR description or review comments - review fail. ACKs for top commit: apoelstra: ACK bd3c5f5; successfully ran local tests Tree-SHA512: 832228b8b484d2ad3f6b7bf29fcd5885702730ef430d7e39efa01b8b68e1e13ea10b3ac8e42d16cc3588e36a8dc34e4d8a3a77aec5d998ded4378e8f1aebd66b
2 parents 004af84 + bd3c5f5 commit 39d427f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bitcoin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ hex = { package = "hex-conservative", version = "0.3.0", default-features = fals
3333
internals = { package = "bitcoin-internals", path = "../internals", features = ["alloc", "hex"] }
3434
io = { package = "bitcoin-io", path = "../io", default-features = false, features = ["alloc", "hashes"] }
3535
primitives = { package = "bitcoin-primitives", path = "../primitives", default-features = false, features = ["alloc", "hex"] }
36-
secp256k1 = { version = "0.30.0", default-features = false, features = ["hashes", "alloc", "rand"] }
36+
secp256k1 = { version = "0.30.0", default-features = false, features = ["hashes", "alloc"] }
3737
units = { package = "bitcoin-units", path = "../units", default-features = false, features = ["alloc"] }
3838

3939
arbitrary = { version = "1.4.1", optional = true }

0 commit comments

Comments
 (0)