Skip to content

Commit

Permalink
Fix test bitcoin core rpc server compilation (#570)
Browse files Browse the repository at this point in the history
  • Loading branch information
casey authored Sep 27, 2022
1 parent f28be8f commit ec79a14
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ version = "0.0.4"
license = "CC0-1.0"
edition = "2021"
autotests = false
homepage = "https://github.com/casey/ord"
repository = "https://github.com/casey/ord"

[workspace]
members = [".", "test-bitcoincore-rpc"]
Expand Down Expand Up @@ -46,7 +48,6 @@ tower-http = { version = "0.3.3", features = ["cors"] }
[dev-dependencies]
bdk = { version = "0.22.0", features = ["rpc", "keys-bip39", "sqlite"] }
executable-path = "1.0.0"
log = "0.4.14"
nix = "0.24.1"
pretty_assertions = "1.2.1"
reqwest = { version = "0.11.10", features = ["blocking"] }
Expand Down
6 changes: 5 additions & 1 deletion test-bitcoincore-rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
[package]
name = "test-bitcoincore-rpc"
description = "Test Bitcoin Core RPC server"
version = "0.0.0"
edition = "2021"
license = "CC0-1.0"
homepage = "https://github.com/casey/ord"
repository = "https://github.com/casey/ord"

[dependencies]
bitcoin = "0.28.1"
bitcoin = { version = "0.28.1", features = ["use-serde"] }
hex = "0.4.3"
jsonrpc-core = "18.0.0"
jsonrpc-core-client = "18.0.0"
Expand Down

0 comments on commit ec79a14

Please sign in to comment.