Put non-optional dependency with other non-optional
We have a separation between optional dependencies and non-optional dependencies, `hex_lit` snuck in to the wrong group.
This commit is contained in:
parent
182fa9bd76
commit
d86ef3b01b
|
@ -38,13 +38,13 @@ bitcoin-internals = { path = "../internals" }
|
|||
bech32 = { version = "0.9.0", default-features = false }
|
||||
bitcoin_hashes = { version = "0.11.0", default-features = false }
|
||||
secp256k1 = { version = "0.25.0", default-features = false, features = ["bitcoin_hashes"] }
|
||||
hex_lit = "0.1.1"
|
||||
|
||||
base64 = { version = "0.13.0", optional = true }
|
||||
bitcoinconsensus = { version = "0.20.2-0.5.0", optional = true, default-features = false }
|
||||
core2 = { version = "0.3.0", default-features = false, features = ["alloc"], optional = true }
|
||||
# Do NOT use this as a feature! Use the `serde` feature instead.
|
||||
actual-serde = { package = "serde", version = "1.0.103", default-features = false, features = [ "derive", "alloc" ], optional = true }
|
||||
hex_lit = "0.1.1"
|
||||
|
||||
[dev-dependencies]
|
||||
serde_json = "1.0.0"
|
||||
|
|
Loading…
Reference in New Issue