From: Matt Corallo Date: Sun, 8 Sep 2024 21:41:51 +0000 (+0000) Subject: Reduce features on `lightning-transaction-sync`'s `tokio` dev-dep X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=35bc575cd8086a7e7dcb9345c23985a7335a9e5e;p=rust-lightning 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. --- diff --git a/lightning-transaction-sync/Cargo.toml b/lightning-transaction-sync/Cargo.toml index bca6e0a7c..34105ea3e 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"] }