core-lightning/plugins/grpc-plugin/Cargo.toml
michael1011 27df5aa03b grpc-plugin: Update rcgen
The version of rcgen that was used before does not compile with
the latest stable Rust release v1.80
2024-07-31 08:53:12 +02:00

31 lines
845 B
TOML

[package]
edition = "2021"
name = "cln-grpc-plugin"
version = "0.1.6"
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/"
[[bin]]
name = "cln-grpc"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
log = "0.4"
prost = "0.11"
rcgen = { version = "0.13.1", features = ["pem", "x509-parser"] }
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" }
serde_json = "1.0.113"
[dependencies.tokio]
features = ["net", "rt-multi-thread"]
version = "1"
[dependencies.tonic]
features = ["tls", "transport"]
version = "0.8"