mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-01-19 05:43:55 +01:00
7e22b78af9
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.
16 lines
761 B
TOML
16 lines
761 B
TOML
[package]
|
|
name = "msrv-check"
|
|
version = "0.1.0"
|
|
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" }
|
|
lightning-background-processor = { path = "../lightning-background-processor", features = ["futures"] }
|
|
lightning-rapid-gossip-sync = { path = "../lightning-rapid-gossip-sync" }
|
|
lightning-custom-message = { path = "../lightning-custom-message" }
|