From f8c73b7faa214384cd7e638486d6bb07fd28a62b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20Florkiewicz?= Date: Fri, 18 Oct 2024 09:56:20 +0200 Subject: [PATCH] fix inherit --- tools/proto-compiler/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/proto-compiler/Cargo.toml b/tools/proto-compiler/Cargo.toml index 37c3f5ce1..9fc7a11f4 100644 --- a/tools/proto-compiler/Cargo.toml +++ b/tools/proto-compiler/Cargo.toml @@ -6,11 +6,11 @@ edition = "2021" publish = false [dependencies] -prost-build.workspace = true -walkdir = { version = "2.3" } git2 = { version = "0.16" } -tempfile = { version = "3.5.0" } -subtle-encoding = { version = "0.5" } +prost-build = { version = "0.13.3" } serde = { version = "1.0", features = ["derive"] } serde_yaml = { version = "0.9" } +subtle-encoding = { version = "0.5" } +tempfile = { version = "3.5.0" } thiserror = { version = "1.0" } +walkdir = { version = "2.3" }