Merge rust-bitcoin/rust-bitcoin#1700: update internals CHANGELOG for release
51f2f8483c
rename bitcoin-internals to bitcoin-private (Andrew Poelstra)ca3b4330e8
specify `internals` version in other Cargo.toml files (Andrew Poelstra)be02045561
update internals CHANGELOG for release (Andrew Poelstra) Pull request description: . ACKs for top commit: Kixunil: ACK51f2f8483c
tcharding: ACK51f2f8483c
Tree-SHA512: 6eca1dded06da2567f4f7b032b800f8dbd5f6ea768693eb70c7853a06ae7e19be109fbeaf2af45a196180597f7e122b85e8f0abaa702ec60e1b72868c5a74db9
This commit is contained in:
commit
edcb6fb81f
|
@ -34,7 +34,7 @@ all-features = true
|
|||
rustdoc-args = ["--cfg", "docsrs"]
|
||||
|
||||
[dependencies]
|
||||
bitcoin-internals = { path = "../internals" }
|
||||
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"] }
|
||||
|
|
|
@ -24,7 +24,7 @@ all-features = true
|
|||
rustdoc-args = ["--cfg", "docsrs"]
|
||||
|
||||
[dependencies]
|
||||
internals = { path = "../internals", package = "bitcoin-internals" }
|
||||
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".
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Unreleased (0.1.0)
|
||||
# 0.1.0 - 2023-03-08
|
||||
|
||||
Split this crate out from the [rust-bitcoin](https://github.com/rust-bitcoin/rust-bitcoin) crate.
|
||||
For previous development history see the original
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
[package]
|
||||
name = "bitcoin-internals"
|
||||
name = "bitcoin-private"
|
||||
version = "0.1.0"
|
||||
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>", "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"]
|
||||
|
|
Loading…
Reference in New Issue