From 52a6fd579d0fadf22ee57511ac233a74d5a339ea Mon Sep 17 00:00:00 2001 From: Donghyun Kim Date: Sat, 21 Sep 2024 11:09:33 +0900 Subject: [PATCH] Upgrade `protoc` --- rust_crate/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust_crate/src/main.rs b/rust_crate/src/main.rs index 891370e8..f78b6719 100644 --- a/rust_crate/src/main.rs +++ b/rust_crate/src/main.rs @@ -27,7 +27,7 @@ fn main() -> Result<(), String> { .to_str() .ok_or("Could not set the path for `protoc` installation")?, ); - let install_result = protoc_prebuilt::init("25.2"); + let install_result = protoc_prebuilt::init("28.2"); let (protoc_binary_path, _) = install_result.map_err(|_| "Automatic installation of `protoc` failed, try installing it manually" )?;