diff --git a/Cargo.toml b/Cargo.toml index 68df788a53..adafad462a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] @@ -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"] } diff --git a/test-bitcoincore-rpc/Cargo.toml b/test-bitcoincore-rpc/Cargo.toml index d185031a83..51d4558f6e 100644 --- a/test-bitcoincore-rpc/Cargo.toml +++ b/test-bitcoincore-rpc/Cargo.toml @@ -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"