Skip to content

Commit 4c1749a

Browse files
committedMay 17, 2022
Merge #604: unpinning dependency tokio to just 1
939a115 unpinning dependency tokio to 1 (Richard Ulrich) Pull request description: <!-- You can erase any parts of this template not applicable to your Pull Request. --> ### Description unpinning dependency tokio to just 1 ### 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 * [x] I've updated `CHANGELOG.md` #### 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 939a115 Tree-SHA512: 7b33522411f6b63d844d12cc86c8992aa4105c29e91dbef67362a6c600f3ef39e802ff5893054bf8feeb7fa5bf383765025096cbc2ccb9a6b83bc5c919a5a43d
2 parents e548653 + 939a115 commit 4c1749a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
- added `OldestFirstCoinSelection` impl to `CoinSelectionAlgorithm`
1010
- New MSRV set to `1.56`
11+
- Unpinned tokio to `1`
1112
- Add traits to reuse `Blockchain`s across multiple wallets (`BlockchainFactory` and `StatelessBlockchain`).
1213
- Upgrade to rust-bitcoin `0.28`
1314

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ bitcoincore-rpc = { version = "0.15", optional = true }
4242

4343
# Platform-specific dependencies
4444
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
45-
tokio = { version = "~1.14", features = ["rt"] }
45+
tokio = { version = "1", features = ["rt"] }
4646

4747
[target.'cfg(target_arch = "wasm32")'.dependencies]
4848
async-trait = "0.1"

0 commit comments

Comments
 (0)
Please sign in to comment.