cln-commando-cli 0.1.0

A tiny CLI for calling Core Lightning RPC methods over Commando/LNSocket
[package]
name = "cln-commando-cli"
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
authors = ["Rusty Russell <rusty@rustcorp.com.au>"]
license = "MIT"
description = "A tiny CLI for calling Core Lightning RPC methods over Commando/LNSocket"
repository = "https://github.com/rustyrussell/cln-commando-cli"
homepage = "https://github.com/rustyrussell/cln-commando-cli"
documentation = "https://docs.rs/cln-commando-cli"
readme = "README.md"
keywords = ["lightning", "cln", "commando", "bitcoin", "cli"]
categories = ["command-line-utilities", "cryptography::cryptocurrencies"]
exclude = ["target", ".github"]

[[bin]]
name = "cln-commando"
path = "src/main.rs"

[dependencies]
anyhow = "1.0"
clap = { version = "4.5", features = ["derive", "env"] }
lnsocket = "0.5.2"
serde_json = "1.0"
tokio = { version = "1.37", features = ["macros", "rt-multi-thread"] }

[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"