2022-01-14 16:11:28 +01:00
|
|
|
[package]
|
|
|
|
name = "cln-rpc"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2022-01-14 18:56:00 +01:00
|
|
|
[[example]]
|
|
|
|
name = "cln-rpc-getinfo"
|
|
|
|
path = "examples/getinfo.rs"
|
|
|
|
|
2022-01-14 16:11:28 +01:00
|
|
|
[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" ] }
|
2022-04-01 06:12:45 +02:00
|
|
|
hex = "0.4.3"
|
2022-01-14 16:11:28 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio = { version = "1", features = ["net", "macros", "rt-multi-thread"]}
|
|
|
|
env_logger = "*"
|