mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
24 lines
554 B
TOML
24 lines
554 B
TOML
[package]
|
|
name = "cln-rpc"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[example]]
|
|
name = "cln-rpc-getinfo"
|
|
path = "examples/getinfo.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.51"
|
|
bytes = "1.1.0"
|
|
log = "0.4.14"
|
|
serde = { version = "1.0.131", features = ["derive"] }
|
|
serde_json = "1.0.72"
|
|
tokio-util = { version = "0.6.9", features = ["codec"] }
|
|
tokio = { version = "1", features = ["net"]}
|
|
futures-util = { version = "*", features = [ "sink" ] }
|
|
hex = "0.4.3"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["net", "macros", "rt-multi-thread"]}
|
|
env_logger = "*"
|