Skip to content

Commit 5c5bb78

Browse files
committed
Merge #550: Pin tokio version to ~1.14
b04bb59 Pin tokio version to ~1.14 (Steve Myers) Pull request description: ### Description The `tokio` project recently changed their MSRV to `1.49.0`. This PR will pin the `tokio` dependency version to `~1.14` which is prior to their MSRV increase. ### Notes to the reviewers The LDK team took this approach for their `tokio` dev-dependency, see lightningdevkit/rust-lightning#1315. As long as `tokio` backports bug fixes to`1.14.x` releases this should be safe. If we need any new features we can revisit this decision. ### 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 updated `CHANGELOG.md` ACKs for top commit: LLFourn: ACK b04bb59 Tree-SHA512: a44d61e0d644900837b5a99e0f2b9e5706cf9932f7430c3a2c8adbff37c82e4a6a545849fe031da748fcd8c8a70f5266d6974c5b6634b50af5eae148b9a26635
2 parents 0efbece + b04bb59 commit 5c5bb78

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
- Pin tokio dependency version to ~1.14 to prevent errors due to their new MSRV 1.49.0
10+
911
## [v0.16.0] - [v0.15.0]
1012

1113
- Disable `reqwest` default features.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ bitcoincore-rpc = { version = "0.14", optional = true }
4242

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

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

0 commit comments

Comments
 (0)