mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-01-18 13:24:36 +01:00
7301ff0c09
Since we now have a consistent MSRV and edition, we can move `lightning-custom-message` to the main workspace.
15 lines
639 B
TOML
15 lines
639 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-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" }
|