From 42ac994474c2d5d6e94da5935a390b78e3c8ee0f Mon Sep 17 00:00:00 2001 From: Ryan Bottriell Date: Tue, 20 Feb 2024 17:21:28 -0800 Subject: [PATCH] Move tonic-build version to workspace Signed-off-by: Ryan Bottriell --- Cargo.toml | 1 + crates/spfs-vfs/Cargo.toml | 2 +- crates/spfs/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ce86ada29..eadcd8b09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -120,6 +120,7 @@ thiserror = "1.0" tokio = { version = "1.28", features = ["rt"] } tokio-retry = "0.3.0" tonic = "0.11" +tonic-build = "0.11" tower = "0.4.13" tracing = "0.1.35" tracing-capture = "0.1" diff --git a/crates/spfs-vfs/Cargo.toml b/crates/spfs-vfs/Cargo.toml index b4fe66681..287271343 100644 --- a/crates/spfs-vfs/Cargo.toml +++ b/crates/spfs-vfs/Cargo.toml @@ -61,4 +61,4 @@ windows = { workspace = true, optional = true, features = [ [build-dependencies] protobuf-src = { version = "1.0.5", optional = true } # protoc @ 3.19.3 -tonic-build = "0.11" +tonic-build = { workspace = true } diff --git a/crates/spfs/Cargo.toml b/crates/spfs/Cargo.toml index 0d96814ab..c52976cac 100644 --- a/crates/spfs/Cargo.toml +++ b/crates/spfs/Cargo.toml @@ -99,7 +99,7 @@ features = ["Win32_Storage_FileSystem", "Win32_Foundation"] [build-dependencies] protobuf-src = { version = "1.0.5", optional = true } # protoc @ 3.19.3 -tonic-build = "0.11" +tonic-build = { workspace = true } [dev-dependencies] criterion = { version = "0.3", features = ["async_tokio", "html_reports"] }