From: Richard Ulrich Date: Mon, 9 May 2022 14:28:50 +0000 (+0200) Subject: unpinning dependency tokio to 1 X-Git-Tag: v0.19.0~8^2 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/database/struct.EncoderStringWriter.html?a=commitdiff_plain;h=939a1156c65d0f347cb4397e0883573737d39761;p=bdk unpinning dependency tokio to 1 --- diff --git a/CHANGELOG.md b/CHANGELOG.md index d1aca5db..4564032f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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` diff --git a/Cargo.toml b/Cargo.toml index bcbe43df..14d21c3e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"