From f4d03b08317dffd7ed3c077c69b579586dc95704 Mon Sep 17 00:00:00 2001 From: Luis Schwab Date: Sat, 26 Apr 2025 10:51:55 -0300 Subject: [PATCH] chore(example_wallet_esplora_async): bump tokio to 1.38.1 --- examples/example_wallet_esplora_async/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/example_wallet_esplora_async/Cargo.toml b/examples/example_wallet_esplora_async/Cargo.toml index 089105d7..4d15e323 100644 --- a/examples/example_wallet_esplora_async/Cargo.toml +++ b/examples/example_wallet_esplora_async/Cargo.toml @@ -8,5 +8,5 @@ edition = "2021" [dependencies] bdk_wallet = { path = "../../wallet", features = ["rusqlite"] } bdk_esplora = { version = "0.20", features = ["async-https", "tokio"] } -tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] } +tokio = { version = "1.38.1", features = ["rt", "rt-multi-thread", "macros"] } anyhow = "1"