Skip to content

Commit 440d9e1

Browse files
committed
core-rpc -> bitcoincore-rpc
the change was done becase bitcoincore-rpc wasn't releasing with bitcoin 0.30 but now it is, so switch back to it.
1 parent 14005ab commit 440d9e1

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

Cargo.toml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ description = "Utility to run a regtest bitcoind process, useful in integration
66
license = "MIT"
77
repository = "https://github.com/RCasatta/bitcoind"
88
documentation = "https://docs.rs/bitcoind/"
9-
rust-version = "1.48.0" # without features, with any feature is 1.57
9+
rust-version = "1.48.0" # without features, with any feature is 1.57
1010
edition = "2018"
1111
categories = ["cryptography::cryptocurrencies", "development-tools::testing"]
1212

1313
[dependencies]
14-
bitcoincore-rpc = { package="core-rpc", version = "0.17.0" }
14+
bitcoincore-rpc = { version = "0.17.0" }
1515
log = "0.4"
1616
which = "4.2.5"
1717
anyhow = "1.0.66"
@@ -22,9 +22,11 @@ env_logger = "0.9.0"
2222

2323
[build-dependencies]
2424
bitcoin_hashes = { version = "0.12", optional = true }
25-
flate2 = { version = "1.0", optional = true }
26-
tar = { version = "0.4", optional = true }
27-
minreq = { version = "2.9.0", default-features = false, features = ["https"], optional = true }
25+
flate2 = { version = "1.0", optional = true }
26+
tar = { version = "0.4", optional = true }
27+
minreq = { version = "2.9.0", default-features = false, features = [
28+
"https",
29+
], optional = true }
2830
zip = { version = "0.5", optional = true }
2931
anyhow = "1.0.66"
3032

0 commit comments

Comments
 (0)