mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
bf7ad86ef2
Suggested-by: Rusty Russell <@rustyrussell> Changelog-Added: plugins: `cln-grpc` first class GRPC interface for remotely controlling nodes over mTLS authentication
32 lines
529 B
TOML
32 lines
529 B
TOML
[package]
|
|
edition = "2021"
|
|
name = "cln-grpc-plugin"
|
|
version = "0.1.0"
|
|
|
|
[[bin]]
|
|
name = "cln-grpc"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
log = "0.4"
|
|
prost = "0.8"
|
|
rcgen = { version = "0.8", features = ["pem", "x509-parser"] }
|
|
|
|
[dependencies.cln-grpc]
|
|
path = "../../cln-grpc"
|
|
|
|
[dependencies.cln-plugin]
|
|
path = "../../plugins"
|
|
|
|
[dependencies.cln-rpc]
|
|
path = "../../cln-rpc"
|
|
|
|
[dependencies.tokio]
|
|
features = ["net", "rt-multi-thread"]
|
|
version = "1"
|
|
|
|
[dependencies.tonic]
|
|
features = ["tls", "transport"]
|
|
version = "^0.5"
|