Commit 9045e5e
committed
Use range dependencies
The last couple of releases of `bitcoincore-rpc` and `bitcoin_hashes`
have not required code changes here. This means we can use range
dependencies. The benefit is that it makes the upgrade of other crates
that use `bitcoind` easier.
Tested by pinning `hashes` with:
- cargo update -p bitcoin_hashes@0.13.0 --precise 0.13.0
- cargo update -p bitcoin_hashes@0.14.0 --precise 0.14.0
And then pinning `bitcoincore-rpc` with all of the dependencies in the
range and running `cargo check --all --all-features --all-targets`
E.g (using `cc` as alias to the cargo check command above)
- cargo update -p bitcoincore-rpc --precise 0.17.0 && cc
- cargo update -p bitcoincore-rpc --precise 0.18.0 && cc
- cargo update -p bitcoincore-rpc --precise 0.19.0 && cc
Bump the crate patch version so we can release this change in a point
release. Since this is a pre-1.0 crate I believe this is ok to do.1 parent 9aab8ac commit 9045e5e
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
14 | | - | |
| 14 | + | |
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
24 | | - | |
| 24 | + | |
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
| |||
0 commit comments