primitives: Move optional dependency to correct place

We keep optional deps in a separate group to non-optional deps, move the
new `arbitrary` dependency.

Internal change only.
This commit is contained in:
Tobin C. Harding 2024-09-19 08:36:20 +10:00
parent 4fb2fccd16
commit 184dfbcdb6
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 1 deletions

View File

@ -22,12 +22,12 @@ serde = ["dep:serde", "hashes/serde", "internals/serde", "units/serde", "alloc"]
arbitrary = ["dep:arbitrary", "units/arbitrary"]
[dependencies]
arbitrary = { version = "1", optional = true }
hashes = { package = "bitcoin_hashes", version = "0.14.0", default-features = false, features = ["bitcoin-io"] }
internals = { package = "bitcoin-internals", version = "0.3.0" }
io = { package = "bitcoin-io", version = "0.1.1", default-features = false }
units = { package = "bitcoin-units", version = "0.1.0", default-features = false }
arbitrary = { version = "1", optional = true }
ordered = { version = "0.2.0", optional = true }
serde = { version = "1.0.103", default-features = false, features = ["derive"], optional = true }