cln/plugins/lsps-plugin/Cargo.toml
daywalker90 193afeb81b lsps: remove unmaintained crate paste
Instead we use a more verbose approach of requiring an additional name input

Changelog-None
2026-04-24 19:38:53 +02:00

28 lines
614 B
TOML

[package]
name = "cln-lsps"
version = "0.1.1"
edition = "2024"
rust-version.workspace = true
[[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.32.2"
chrono = { version = "0.4.42", features = ["serde"] }
cln-plugin = { workspace = true }
cln-rpc = { workspace = true }
hex = "0.4"
log = "0.4"
rand = "0.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["raw_value"] }
thiserror = "2.0"
tokio = { version = "1.44", features = ["full"] }