cln/plugins/grpc-plugin/Cargo.toml
2026-05-25 17:32:59 +02:00

32 lines
810 B
TOML

[package]
edition = "2024"
name = "cln-grpc-plugin"
version = "0.7.0"
description = "A Core Lightning plugin that re-exposes the JSON-RPC over grpc. Authentication is done via mTLS."
license = "MIT"
repository = "https://github.com/ElementsProject/lightning"
documentation = "https://docs.rs/crate/cln-grpc-plugin/"
rust-version.workspace = true
[[bin]]
name = "cln-grpc"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
log = "0.4"
rcgen = { version = "0.14", features = ["pem", "x509-parser"] }
prost = "0.14"
cln-grpc = { workspace = true, features = ["server"] }
cln-plugin = { workspace = true }
cln-rpc = { workspace = true }
serde_json = "1.0.113"
[dependencies.tokio]
features = ["net", "rt-multi-thread"]
version = "1"
[dependencies.tonic]
features = ["tls-ring", "transport"]
version = "0.14"