From 9dfcb8e78e4ee7dcced1711c44be0ab25d648c49 Mon Sep 17 00:00:00 2001 From: Varun Gandhi Date: Thu, 17 Oct 2024 12:52:20 +0800 Subject: [PATCH] Specify MSRV in protobuf crate The protobuf-codegen crate fails to compile with Rust 1.71.0 due to code in this crate, so mark the MSRV in this crate correctly. --- protobuf/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/protobuf/Cargo.toml b/protobuf/Cargo.toml index aed6323af..d22b86a41 100644 --- a/protobuf/Cargo.toml +++ b/protobuf/Cargo.toml @@ -11,6 +11,7 @@ documentation = "https://github.com/stepancheg/rust-protobuf/blob/master/README. description = """ Rust implementation of Google protocol buffers """ +rust-version = "1.74.0" [lib] bench = false