]> Untitled Git - bdk/commitdiff
unpinning dependency tokio to 1
authorRichard Ulrich <richard.ulrich@seba.swiss>
Mon, 9 May 2022 14:28:50 +0000 (16:28 +0200)
committerRichard Ulrich <richi@paraeasy.ch>
Tue, 17 May 2022 12:44:45 +0000 (14:44 +0200)
CHANGELOG.md
Cargo.toml

index d1aca5dbb0a5f401e66f76e8d931b341d1f34b52..4564032f206ffd2670b9c30cc088ea2b33373693 100644 (file)
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 - added `OldestFirstCoinSelection` impl to `CoinSelectionAlgorithm`
 - New MSRV set to `1.56`
+- Unpinned tokio to `1`
 - Add traits to reuse `Blockchain`s across multiple wallets (`BlockchainFactory` and `StatelessBlockchain`).
 - Upgrade to rust-bitcoin `0.28` 
 
index bcbe43dff9ed6bef51514cf3b7196d03e9557952..14d21c3e1ab2fdcd8c712d8e398261b2b463a193 100644 (file)
@@ -42,7 +42,7 @@ bitcoincore-rpc = { version = "0.15", optional = true }
 
 # Platform-specific 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]
 async-trait = "0.1"