From c75eef91696628106184756d5d1ab6b58749aa81 Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Wed, 27 Nov 2024 15:34:57 +0100 Subject: [PATCH] build(deps): enforce tonic >= 0.12.3 and update other dependencies --- proto-compiler/Cargo.toml | 2 +- proto/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/proto-compiler/Cargo.toml b/proto-compiler/Cargo.toml index 014adc9..cedec0c 100644 --- a/proto-compiler/Cargo.toml +++ b/proto-compiler/Cargo.toml @@ -20,7 +20,7 @@ regex = { "version" = "1.10" } ureq = { "version" = "2.10" } zip = { version = "2.2", default-features = false, features = ["deflate"] } fs_extra = { version = "1.3.0" } -tonic-build = { version = "0.12", optional = true } +tonic-build = { version = "0.12.3", optional = true } [features] diff --git a/proto/Cargo.toml b/proto/Cargo.toml index fbf4618..074f422 100644 --- a/proto/Cargo.toml +++ b/proto/Cargo.toml @@ -53,7 +53,7 @@ bytes = { version = "1.7", default-features = false } prost = { version = "0.13", default-features = false, features = [ "prost-derive", ] } -tonic = { version = "0.12", optional = true } +tonic = { version = "0.12.3", optional = true } serde = { version = "1.0.208", default-features = false, features = [ "derive", ], optional = true }