diff --git a/bitcoin/Cargo.toml b/bitcoin/Cargo.toml index e2e748f06..d73832d57 100644 --- a/bitcoin/Cargo.toml +++ b/bitcoin/Cargo.toml @@ -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"] } diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 9a293fdaf..32710bf83 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -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]