Files
palladum-lightning/plugins/lsps-plugin/Cargo.toml
Peter Neuroth 17a9a928f5 lsp_plugin: add lsps2 models
Add models and options to enable lsps2 on the lsp

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

28 lines
576 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"
bitcoin = "0.31"
chrono = { version= "0.4.42", features = ["serde"] }
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"] }