From 35bc575cd8086a7e7dcb9345c23985a7335a9e5e 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, and is just good practice. --- 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 bca6e0a7c0..34105ea3e9 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"] }