From 7e22b78af9715e74dfa1de848203b1fecba49b87 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sun, 8 Sep 2024 21:14:13 +0000 Subject: [PATCH] Test `lightning-transaction-sync` in our no-dev-deps MSRV test Now that `lightning-transaction-sync` is in the workspace and covered by our MSRV we should be testing it in our `msrv-no-dev-deps-check` test crate. --- msrv-no-dev-deps-check/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/msrv-no-dev-deps-check/Cargo.toml b/msrv-no-dev-deps-check/Cargo.toml index 3a4acc675..be594f6e5 100644 --- a/msrv-no-dev-deps-check/Cargo.toml +++ b/msrv-no-dev-deps-check/Cargo.toml @@ -6,6 +6,7 @@ edition = "2021" [dependencies] lightning = { path = "../lightning" } lightning-block-sync = { path = "../lightning-block-sync", features = [ "rest-client", "rpc-client" ] } +lightning-transaction-sync = { path = "../lightning-transaction-sync", features = [ "esplora-async-https", "electrum" ] } lightning-invoice = { path = "../lightning-invoice" } lightning-net-tokio = { path = "../lightning-net-tokio" } lightning-persister = { path = "../lightning-persister" } -- 2.39.5