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:
Tobin C. Harding 2023-02-21 08:35:25 +11:00
parent d86ef3b01b
commit 2620f3b69d
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ secp256k1 = { version = "0.25.0", default-features = false, features = ["bitcoin
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 }
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 }
# 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 }