Implements the LSPS0 service plugin for core lightning Changelog-Added: lsps-plugin: lsps0 service support Signed-off-by: Peter Neuroth <pet.v.ne@gmail.com>
26 lines
506 B
TOML
26 lines
506 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"
|
|
cln-plugin = { version = "0.4", path = "../" }
|
|
cln-rpc = { version = "0.4", 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"] }
|