1
0
mirror of https://github.com/romanz/electrs.git synced 2024-11-19 01:43:29 +01:00

Test electrs with latest bitcoind

This commit is contained in:
Roman Zeyde 2024-05-11 11:18:51 +03:00
parent 74b868c6e3
commit 7773c266d1
2 changed files with 3 additions and 5 deletions

6
Cargo.lock generated
View File

@ -116,8 +116,7 @@ dependencies = [
[[package]]
name = "bitcoincore-rpc"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8eb70725a621848c83b3809913d5314c0d20ca84877d99dd909504b564edab00"
source = "git+https://github.com/romanz/rust-bitcoincore-rpc?rev=e03cd640bfe4f004bb415b9122aab0617dd942a3#e03cd640bfe4f004bb415b9122aab0617dd942a3"
dependencies = [
"bitcoincore-rpc-json",
"jsonrpc",
@ -129,8 +128,7 @@ dependencies = [
[[package]]
name = "bitcoincore-rpc-json"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "856ffbee2e492c23bca715d72ea34aae80d58400f2bda26a82015d6bc2ec3662"
source = "git+https://github.com/romanz/rust-bitcoincore-rpc?rev=e03cd640bfe4f004bb415b9122aab0617dd942a3#e03cd640bfe4f004bb415b9122aab0617dd942a3"
dependencies = [
"bitcoin",
"serde",

View File

@ -24,7 +24,7 @@ spec = "internal/config_specification.toml"
anyhow = "1.0"
bitcoin = { version = "0.31.2", features = ["serde", "rand-std"] }
bitcoin_slices = { version = "0.7", features = ["bitcoin", "sha2"] }
bitcoincore-rpc = { version = "0.18" }
bitcoincore-rpc = { git = "https://github.com/romanz/rust-bitcoincore-rpc", rev = "e03cd640bfe4f004bb415b9122aab0617dd942a3" }
configure_me = "0.4"
crossbeam-channel = "0.5"
dirs-next = "2.0"