Re-order optional dependencies
The optional dependencies are ordered and separated by whitspace in a manner that may not be obvious (or even have a reason). Some of this is because since use of `?` deps changed name. Put all the optional deps together in alphabetic order.
This commit is contained in:
parent
95f2a8dab6
commit
8f2f4cbb3c
|
@ -35,13 +35,12 @@ primitives = { package = "bitcoin-primitives", version = "0.100.0", default-feat
|
|||
secp256k1 = { version = "0.29.0", default-features = false, features = ["hashes", "alloc"] }
|
||||
units = { package = "bitcoin-units", version = "0.1.0", default-features = false, features = ["alloc"] }
|
||||
|
||||
arbitrary = { version = "1", optional = true }
|
||||
base64 = { version = "0.22.0", optional = true }
|
||||
ordered = { version = "0.2.0", optional = true }
|
||||
# `bitcoinconsensus` version includes metadata which indicates the version of Core. Use `cargo tree` to see it.
|
||||
bitcoinconsensus = { version = "0.106.0", default-features = false, optional = true }
|
||||
|
||||
ordered = { version = "0.2.0", optional = true }
|
||||
serde = { version = "1.0.103", default-features = false, features = [ "derive", "alloc" ], optional = true }
|
||||
arbitrary = { version = "1", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
internals = { package = "bitcoin-internals", version = "0.3.0", features = ["test-serde"] }
|
||||
|
|
|
@ -26,7 +26,6 @@ io = { package = "bitcoin-io", version = "0.1.1", default-features = false }
|
|||
units = { package = "bitcoin-units", version = "0.1.0", default-features = false }
|
||||
|
||||
ordered = { version = "0.2.0", optional = true }
|
||||
|
||||
serde = { version = "1.0.103", default-features = false, features = ["derive"], optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
|
|
Loading…
Reference in New Issue