From f301260fc6d839c5422cf0062de49bab3a7c6be8 Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Wed, 26 Jun 2024 16:37:03 +0200 Subject: [PATCH] build(deps): update zip and remove unused deps --- proto-compiler/Cargo.toml | 2 +- proto/Cargo.toml | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/proto-compiler/Cargo.toml b/proto-compiler/Cargo.toml index 1ed692b..825e3d9 100644 --- a/proto-compiler/Cargo.toml +++ b/proto-compiler/Cargo.toml @@ -15,7 +15,7 @@ tempfile = { version = "3.10.1" } regex = { "version" = "1.10.4" } # Use of native-tls-vendored should build vendored openssl, which is required for Alpine build ureq = { "version" = "2.9.6" } -zip = { version = "0.6.6", default-features = false, features = ["deflate"] } +zip = { version = "2.1.3", default-features = false, features = ["deflate"] } fs_extra = { version = "1.3.0" } tonic-build = { version = "0.11.0", optional = true } diff --git a/proto/Cargo.toml b/proto/Cargo.toml index 62f3984..d9fcf59 100644 --- a/proto/Cargo.toml +++ b/proto/Cargo.toml @@ -38,7 +38,6 @@ std = ["grpc"] # Build gRPC server using tonic grpc = [ "prost/std", - "prost-types/std", "tenderdash-proto-compiler/server", "tenderdash-proto-compiler/client", "dep:tonic", @@ -48,7 +47,6 @@ grpc = [ prost = { version = "0.12.4", default-features = false, features = [ "prost-derive", ] } -prost-types = { version = "0.12.4", default-features = false } tonic = { version = "0.11.0", optional = true } bytes = { version = "1.6.0", default-features = false, features = ["serde"] } serde = { version = "1.0.197", default-features = false, features = ["derive"] }