unpinning dependency tokio to 1
This commit is contained in:
parent
e5486536ae
commit
939a1156c6
@ -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`
|
||||||
|
|
||||||
|
@ -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"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user