Files
palladum-lightning/plugins/lsps-plugin/Cargo.toml
Peter Neuroth e36fdeff81 lsp_plugin: add primitives for messages
Adds some primitives defined in lsps0 for other protocol messages.

Signed-off-by: Peter Neuroth <pet.v.ne@gmail.com>
2025-11-13 10:58:49 +10:30

27 lines
524 B
TOML

[package]
name = "cln-lsps"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "cln-lsps-client"
path = "src/client.rs"
[[bin]]
name = "cln-lsps-service"
path = "src/service.rs"
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
chrono = "0.4.42"
cln-plugin = { version = "0.5", path = "../" }
cln-rpc = { version = "0.5", path = "../../cln-rpc" }
hex = "0.4"
log = "0.4"
rand = "0.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
tokio = { version = "1.44", features = ["full"] }