From 215295f82e5b8d172ff8129d81db83ac547e899b Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sun, 8 Sep 2024 21:41:51 +0000 Subject: [PATCH] Reduce features on `lightning-transaction-sync`'s `tokio` dev-dep This should marginally reduce the chance of MSRV or other issues in the future. --- lightning-transaction-sync/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightning-transaction-sync/Cargo.toml b/lightning-transaction-sync/Cargo.toml index bca6e0a7c04..34105ea3e90 100644 --- a/lightning-transaction-sync/Cargo.toml +++ b/lightning-transaction-sync/Cargo.toml @@ -32,7 +32,7 @@ electrum-client = { version = "0.21.0", optional = true } [dev-dependencies] lightning = { version = "0.0.124", path = "../lightning", default-features = false, features = ["std", "_test_utils"] } -tokio = { version = "1.35.0", features = ["full"] } +tokio = { version = "1.35.0", features = ["macros"] } [target.'cfg(not(target_os = "windows"))'.dev-dependencies] electrsd = { version = "0.28.0", default-features = false, features = ["legacy"] }