bitcoin: Remove "std" feature from examples

The "rand-std" feature enables "std" but we use it in examples still.
FTR I added this a while ago thinking the explicitness was clearer but
in hindsight I think that was wrong and that it makes usage of our
features _less_ clear.

No logic changes.
This commit is contained in:
Tobin C. Harding 2024-06-11 13:48:30 +10:00
parent 1fdcf79c3a
commit 091d614aad
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 6 additions and 6 deletions

View File

@ -59,7 +59,7 @@ name = "bip32"
[[example]]
name = "handshake"
required-features = ["std", "rand-std"]
required-features = ["rand-std"]
[[example]]
name = "ecdsa-psbt"
@ -67,23 +67,23 @@ required-features = ["std", "bitcoinconsensus"]
[[example]]
name = "ecdsa-psbt-simple"
required-features = ["std", "rand-std"]
required-features = ["rand-std"]
[[example]]
name = "sign-tx-segwit-v0"
required-features = ["std", "rand-std"]
required-features = ["rand-std"]
[[example]]
name = "sign-tx-taproot"
required-features = ["std", "rand-std"]
required-features = ["rand-std"]
[[example]]
name = "taproot-psbt"
required-features = ["std", "rand-std", "bitcoinconsensus"]
required-features = ["rand-std", "bitcoinconsensus"]
[[example]]
name = "taproot-psbt-simple"
required-features = ["std", "rand-std"]
required-features = ["rand-std"]
[[example]]
name = "sighash"