unpinning dependency tokio to 1

This commit is contained in:
Richard Ulrich 2022-05-09 16:28:50 +02:00 committed by Richard Ulrich
parent e5486536ae
commit 939a1156c6
No known key found for this signature in database
GPG Key ID: B37F658367A845DC
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- added `OldestFirstCoinSelection` impl to `CoinSelectionAlgorithm` - added `OldestFirstCoinSelection` impl to `CoinSelectionAlgorithm`
- New MSRV set to `1.56` - New MSRV set to `1.56`
- Unpinned tokio to `1`
- Add traits to reuse `Blockchain`s across multiple wallets (`BlockchainFactory` and `StatelessBlockchain`). - Add traits to reuse `Blockchain`s across multiple wallets (`BlockchainFactory` and `StatelessBlockchain`).
- Upgrade to rust-bitcoin `0.28` - Upgrade to rust-bitcoin `0.28`

View File

@ -42,7 +42,7 @@ bitcoincore-rpc = { version = "0.15", optional = true }
# Platform-specific dependencies # Platform-specific dependencies
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { version = "~1.14", features = ["rt"] } tokio = { version = "1", features = ["rt"] }
[target.'cfg(target_arch = "wasm32")'.dependencies] [target.'cfg(target_arch = "wasm32")'.dependencies]
async-trait = "0.1" async-trait = "0.1"