rust-libs: Upgrade tonic to v0.12

Tonic had some breaking changes since 0.8. We want to be closer to newer
versions for downstream consumers to be able to benefit from changes in tonic.

Signed-off-by: Peter Neuroth <pet.v.ne@gmail.com>
This commit is contained in:
Peter Neuroth
2024-08-21 13:45:50 +02:00
committed by ShahanaFarooqui
parent 2798b4b7be
commit a6366c2814
3 changed files with 83 additions and 236 deletions

View File

@@ -15,11 +15,11 @@ 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" }
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]
@@ -28,4 +28,4 @@ version = "1"
[dependencies.tonic]
features = ["tls", "transport"]
version = "0.8"
version = "0.11"