Put optional = true at the end
In order to be uniform and make it easier to quickly see that the dependency is optional put `optional = true` as the last item in the config set.
This commit is contained in:
parent
d86ef3b01b
commit
2620f3b69d
|
@ -41,7 +41,7 @@ secp256k1 = { version = "0.25.0", default-features = false, features = ["bitcoin
|
||||||
hex_lit = "0.1.1"
|
hex_lit = "0.1.1"
|
||||||
|
|
||||||
base64 = { version = "0.13.0", optional = true }
|
base64 = { version = "0.13.0", optional = true }
|
||||||
bitcoinconsensus = { version = "0.20.2-0.5.0", optional = true, default-features = false }
|
bitcoinconsensus = { version = "0.20.2-0.5.0", default-features = false, optional = true }
|
||||||
core2 = { version = "0.3.0", default-features = false, features = ["alloc"], optional = true }
|
core2 = { version = "0.3.0", default-features = false, features = ["alloc"], optional = true }
|
||||||
# Do NOT use this as a feature! Use the `serde` feature instead.
|
# 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 }
|
actual-serde = { package = "serde", version = "1.0.103", default-features = false, features = [ "derive", "alloc" ], optional = true }
|
||||||
|
|
Loading…
Reference in New Issue