mirror of
https://github.com/ElementsProject/lightning.git
synced 2026-08-14 12:42:57 +02:00
Instead we use a more verbose approach of requiring an additional name input Changelog-None
28 lines
614 B
TOML
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"] }
|