Files
palladum-lightning/plugins/lsps-plugin/Cargo.toml
Peter Neuroth 203621a629 lsps: Implement JSON-RPC V2 client
Adds an async safe JSON-RPC V2 client for a generic transport layer. The
transport layer we will use later on are BOLT8 lightning messages.

Signed-off-by: Peter Neuroth <pet.v.ne@gmail.com>
2025-05-02 13:34:21 -07:00

16 lines
290 B
TOML

[package]
name = "cln-lsps"
version = "0.1.0"
edition = "2021"
[dependencies]
async-trait = "0.1"
dashmap = "6.1"
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"] }