2022-01-20 13:44:28 +01:00
|
|
|
[package]
|
|
|
|
edition = "2021"
|
2022-03-22 16:49:12 +01:00
|
|
|
name = "cln-grpc-plugin"
|
2023-08-26 12:37:17 +02:00
|
|
|
version = "0.1.4"
|
2022-01-20 13:44:28 +01:00
|
|
|
|
2023-11-22 16:20:20 +01:00
|
|
|
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/"
|
|
|
|
|
2022-03-22 16:49:12 +01:00
|
|
|
[[bin]]
|
|
|
|
name = "cln-grpc"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2022-01-20 13:44:28 +01:00
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0"
|
|
|
|
log = "0.4"
|
2022-12-13 15:56:34 +01:00
|
|
|
prost = "0.11"
|
|
|
|
rcgen = { version = "0.10", features = ["pem", "x509-parser"] }
|
2023-10-17 18:51:57 +02:00
|
|
|
cln-grpc = { version = "0.1", features = ["server"], path = "../../cln-grpc"}
|
|
|
|
cln-plugin = { version = "0.1", path = "../../plugins" }
|
|
|
|
cln-rpc = { version = "0.1", path = "../../cln-rpc" }
|
2022-01-20 13:44:28 +01:00
|
|
|
|
|
|
|
[dependencies.tokio]
|
|
|
|
features = ["net", "rt-multi-thread"]
|
|
|
|
version = "1"
|
|
|
|
|
|
|
|
[dependencies.tonic]
|
|
|
|
features = ["tls", "transport"]
|
2022-12-13 15:56:34 +01:00
|
|
|
version = "0.8"
|