Files
palladum-lightning/plugins/lsps-plugin/Cargo.toml
Christian Decker 516861c5ec rust: Bump cln-plugin==0.5
Due to the breaking change in 9dcc264d4c8e244f0cb827c8a81e61f977011486.
2025-08-19 15:47:58 +09:30

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.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"] }