From d77a36817677c813421625e78bc940b99c416ae8 Mon Sep 17 00:00:00 2001 From: topjohnwu Date: Sun, 28 May 2023 17:30:33 -0700 Subject: [PATCH] Move dependency version into workspace --- native/src/Cargo.toml | 1 + native/src/boot/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/native/src/Cargo.toml b/native/src/Cargo.toml index 89107582e..a4119c880 100644 --- a/native/src/Cargo.toml +++ b/native/src/Cargo.toml @@ -12,6 +12,7 @@ num-traits = "0.2" num-derive = "0.3" thiserror = "1.0" protobuf = "3.2.0" +protobuf-codegen = "3.2.0" byteorder = "1" [profile.dev] diff --git a/native/src/boot/Cargo.toml b/native/src/boot/Cargo.toml index 361358cf4..a0e160dc5 100644 --- a/native/src/boot/Cargo.toml +++ b/native/src/boot/Cargo.toml @@ -8,7 +8,7 @@ crate-type = ["staticlib"] path = "lib.rs" [build-dependencies] -protobuf-codegen = "3.2.0" +protobuf-codegen = { workspace = true } cxx-gen = { workspace = true } [dependencies]