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:
parent
1fdcf79c3a
commit
091d614aad
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue