diff --git a/bitcoin/Cargo.toml b/bitcoin/Cargo.toml index 09690248..6f1cee93 100644 --- a/bitcoin/Cargo.toml +++ b/bitcoin/Cargo.toml @@ -34,7 +34,7 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -bitcoin-internals = { path = "../internals", version = "0.1.0" } +bitcoin-internals = { path = "../internals", package = "bitcoin-private", version = "0.1.0" } bech32 = { version = "0.9.0", default-features = false } bitcoin_hashes = { version = "0.12.0", default-features = false } secp256k1 = { git = "https://github.com/rust-bitcoin/rust-secp256k1", tag = "2023-03-05--fix-hashes", default-features = false, features = ["bitcoin_hashes"] } diff --git a/hashes/Cargo.toml b/hashes/Cargo.toml index f0da1fde..be318b2d 100644 --- a/hashes/Cargo.toml +++ b/hashes/Cargo.toml @@ -24,7 +24,7 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -internals = { path = "../internals", package = "bitcoin-internals", version = "0.1.0" } +internals = { path = "../internals", package = "bitcoin-private", version = "0.1.0" } core2 = { version = "0.3.0", default_features = false, optional = true } # Only enable this if you explicitly do not want to use "std", otherwise enable "serde-std". diff --git a/internals/Cargo.toml b/internals/Cargo.toml index 2f79a2f1..582cb5f9 100644 --- a/internals/Cargo.toml +++ b/internals/Cargo.toml @@ -1,10 +1,10 @@ [package] -name = "bitcoin-internals" +name = "bitcoin-private" version = "0.1.0" authors = ["Andrew Poelstra ", "The Rust Bitcoin developers"] license = "CC0-1.0" repository = "https://github.com/rust-bitcoin/rust-bitcoin/" -documentation = "https://docs.rs/bitcoin-internals" +documentation = "https://docs.rs/bitcoin-private" description = "Internal types and macros used by rust-bitcoin ecosystem" categories = ["cryptography::cryptocurrencies"] keywords = ["internal"]