Skip to content

Commit 6440e1d

Browse files
committed
Merge #85: chore(deps): upgrade rust-bitcoin to 0.32.0
6836628 deps: bump crate version to 0.8.0 (Leonardo Lima) 04f4b34 chore(deps): upgrade `rust-bitcoin` to `0.32.0` and electrsd to `0.28.0` (Leonardo Lima) Pull request description: <!-- You can erase any parts of this template not applicable to your Pull Request. --> `partially fixes` [#1422](bitcoindevkit/bdk#1422) ### Description It updates the rust-bitcoin to 0.32.0, the `bitcoin`crate dependency and `electrsd` to `0.28.0`. _NOTE: The overall BDK update to `0.32.0` still requires and depends on some other crates, please refer to [#1422](bitcoindevkit/bdk#1422 <!-- Describe the purpose of this PR, what's being adding and/or fixed --> ### Notes to the reviewers It's open for any comments. <!-- In this section you can include notes directed to the reviewers, like explaining why some parts of the PR were done in a specific way --> ### Changelog notice - Update the `bitcoin` crate dependency to `0.32.0` - Update the `electrsd` crate dependency to `0.28.0` <!-- Notice the release manager should include in the release tag message changelog --> <!-- See https://keepachangelog.com/en/1.0.0/ for examples --> ### Checklists #### All Submissions: * [x] I've signed all my commits * [x] I followed the [contribution guidelines](https://github.com/bitcoindevkit/bdk/blob/master/CONTRIBUTING.md) * [x] I ran `cargo fmt` and `cargo clippy` before committing #### New Features: * [ ] I've added tests for the new feature * [ ] I've added docs for the new feature #### Bugfixes: * [ ] This pull request breaks the existing API * [ ] I've added tests to reproduce the issue which are now passing * [ ] I'm linking the issue being fixed by this PR ACKs for top commit: notmandatory: ACK 6836628 Tree-SHA512: 660f2f528de6921b111b412514b6a0cc402fac59eefc9a8514f76847adad077d493275e2c4465ad43ac6f214372a57a892de0ebbb809395672f31b46d590ae10
2 parents d6bff85 + 6836628 commit 6440e1d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "esplora-client"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
edition = "2018"
55
authors = ["Alekos Filini <[email protected]>"]
66
license = "MIT"
@@ -18,7 +18,7 @@ path = "src/lib.rs"
1818

1919
[dependencies]
2020
serde = { version = "1.0", features = ["derive"] }
21-
bitcoin = { version = "0.31.0", features = ["serde", "std"], default-features = false }
21+
bitcoin = { version = "0.32", features = ["serde", "std"], default-features = false }
2222
hex = { package = "hex-conservative", version = "0.2" }
2323
log = "^0.4"
2424
minreq = { version = "2.11.0", features = ["json-using-serde"], optional = true }
@@ -27,7 +27,7 @@ reqwest = { version = "0.11", optional = true, default-features = false, feature
2727
[dev-dependencies]
2828
serde_json = "1.0"
2929
tokio = { version = "1.20.1", features = ["full"] }
30-
electrsd = { version = "0.27.0", features = ["legacy", "esplora_a33e97e1", "bitcoind_25_0"] }
30+
electrsd = { version = "0.28.0", features = ["legacy", "esplora_a33e97e1", "bitcoind_25_0"] }
3131
lazy_static = "1.4.0"
3232

3333
[features]

0 commit comments

Comments
 (0)