mirror of
https://github.com/aljazceru/lightning.git
synced 2026-01-22 15:24:21 +01:00
28 lines
734 B
TOML
28 lines
734 B
TOML
[package]
|
|
name = "cln-rpc"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
description = "An async RPC client for Core Lightning."
|
|
|
|
[[example]]
|
|
name = "cln-rpc-getinfo"
|
|
path = "examples/getinfo.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
bitcoin_hashes = { version = "0.10", features = [ "serde" ] }
|
|
bytes = "1.1"
|
|
log = "0.4"
|
|
secp256k1 = { version = "0.22", features = [ "serde" ] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio-util = { version = "0.6.9", features = ["codec"] }
|
|
tokio = { version = "1", features = ["net"]}
|
|
futures-util = { version = "0.3", features = [ "sink" ] }
|
|
hex = "0.4.3"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["net", "macros", "rt-multi-thread"]}
|
|
env_logger = "0.9"
|