mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 22:45:27 +01:00
We bump the version to minor version 0.2 to allow ourselves to bump on patch level when we need to fix a bug or update a dependency. Changelog-Changed: Plugins: `cln-grpc` Upgrade tonic version and introduce new versioning scheme. Signed-off-by: Peter Neuroth <pet.v.ne@gmail.com>
31 lines
846 B
TOML
31 lines
846 B
TOML
[package]
|
|
edition = "2021"
|
|
name = "cln-grpc-plugin"
|
|
version = "0.2.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/"
|
|
|
|
[[bin]]
|
|
name = "cln-grpc"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
log = "0.4"
|
|
rcgen = { version = "0.13.1", features = ["pem", "x509-parser"] }
|
|
prost = "0.12"
|
|
cln-grpc = { version = "0.2", features = ["server"], path = "../../cln-grpc"}
|
|
cln-plugin = { version = "0.2", path = "../../plugins" }
|
|
cln-rpc = { version = "0.2", path = "../../cln-rpc" }
|
|
serde_json = "1.0.113"
|
|
|
|
[dependencies.tokio]
|
|
features = ["net", "rt-multi-thread"]
|
|
version = "1"
|
|
|
|
[dependencies.tonic]
|
|
features = ["tls", "transport"]
|
|
version = "0.11"
|