Skip to content

Commit

Permalink
Remove explicit json version
Browse files Browse the repository at this point in the history
The `client` crate uses a path dependency for `bitcoincore-rpc-json`,
there is no need to explicitly mention the version, doing so just makes
more maintenance work.
  • Loading branch information
tcharding committed May 13, 2024
1 parent 7576a56 commit b0e3f3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ path = "src/lib.rs"
rand = ["bitcoincore-rpc-json/rand"]

[dependencies]
bitcoincore-rpc-json = { version = "0.18.0", path = "../json" }
bitcoincore-rpc-json = { path = "../json" }

log = "0.4.5"
jsonrpc = { version = "0.18.0", features = ["minreq_http"] }
Expand Down

0 comments on commit b0e3f3a

Please sign in to comment.