Skip to content
This repository was archived by the owner on Nov 26, 2024. It is now read-only.

Commit 1a3f679

Browse files
authored
Merge pull request #5 from tcharding/06-13-rename-bitcoind
Re-name bitcoind crate
2 parents 08e8900 + 8926fac commit 1a3f679

30 files changed

+15
-20
lines changed

Cargo-minimal.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,5 +255,5 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
255255
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
256256

257257
[[patch.unused]]
258-
name = "bitcoind"
259-
version = "0.37.0"
258+
name = "bitcoind-json-rpc-regtest"
259+
version = "0.1.0"

Cargo-recent.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,5 +255,5 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
255255
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
256256

257257
[[patch.unused]]
258-
name = "bitcoind"
259-
version = "0.37.0"
258+
name = "bitcoind-json-rpc-regtest"
259+
version = "0.1.0"

Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
[workspace]
22
members = ["client", "json"]
3-
exclude = ["integration_test", "bitcoind"]
3+
exclude = ["integration_test", "regtest"]
44
resolver = "2"
55

66
[patch.crates-io.bitcoind-json-rpc-client]
77
path = "client"
88

99
[patch.crates-io.bitcoind-json-rpc-types]
1010
path = "json"
11-
12-
[patch.crates-io.bitcoind]
13-
path = "bitcoind"

integration_test/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ edition = "2021"
4747
[dependencies]
4848
bitcoin = { version = "0.32.0", default-features = false, features = ["std", "serde"] }
4949
client = { package = "bitcoind-json-rpc-client", version = "0.1.0", default-features = false, features = ["client-sync"] }
50-
bitcoind = { version = "0.37.0", default-features = false, features = [] }
50+
bitcoind = { package = "bitcoind-json-rpc-regtest", version = "0.1.0", default-features = false, features = [] }
5151
rand = "0.8.5"
5252
env_logger = "0.9.0"
5353

@@ -59,5 +59,5 @@ path = "../client"
5959
[patch.crates-io.bitcoind-json-rpc-types]
6060
path = "../json"
6161

62-
[patch.crates-io.bitcoind]
63-
path = "../bitcoind"
62+
[patch.crates-io.bitcoind-json-rpc-regtest]
63+
path = "../regtest"
File renamed without changes.

bitcoind/Cargo.toml renamed to regtest/Cargo.toml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
2-
name = "bitcoind"
3-
version = "0.37.0"
4-
authors = ["Riccardo Casatta <[email protected]>"]
5-
description = "Utility to run a regtest bitcoind process, useful in integration testing environment"
2+
name = "bitcoind-json-rpc-regtest"
3+
version = "0.1.0"
4+
authors = ["Riccardo Casatta <[email protected]>", "Tobin C. Harding <[email protected]>"]
5+
description = "Utility to run a regtest bitcoind process, useful in integration testing environments"
66
license = "MIT"
7-
repository = "https://github.com/RCasatta/bitcoind"
8-
documentation = "https://docs.rs/bitcoind/"
7+
repository = "https://github.com/tcharding/rust-bitcoind-json-rpc"
8+
documentation = "https://docs.rs/bitcoind-json-rpc-regtest/"
99
rust-version = "1.56.1"
1010
edition = "2018"
1111
categories = ["cryptography::cryptocurrencies", "development-tools::testing"]
@@ -71,6 +71,3 @@ path = "../client"
7171

7272
[patch.crates-io.bitcoind-json-rpc-types]
7373
path = "../json"
74-
75-
[patch.crates-io.bitcoind]
76-
path = "../bitcoind"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)