From 058ad870891beb120722daf7b384a106ad3be038 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Sat, 27 Jul 2024 22:33:12 +0200 Subject: [PATCH] rust: set MSRV to 1.67.1 This is needed for updating the ``time`` crate. --- configure.ac | 2 +- rust/Cargo.toml.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 15437be568..d19680e091 100644 --- a/configure.ac +++ b/configure.ac @@ -2153,7 +2153,7 @@ fi cargo_version_output=$($CARGO --version) cargo_version=$(echo "$cargo_version_output" | sed 's/^.*[[^0-9]]\([[0-9]]*\.[[0-9]]*\.[[0-9]]*\).*$/\1/') - MIN_RUSTC_VERSION="1.63.0" # MSRV + MIN_RUSTC_VERSION="1.67.1" # MSRV AC_MSG_CHECKING(for Rust version $MIN_RUSTC_VERSION or newer) AS_VERSION_COMPARE([$rustc_version], [$MIN_RUSTC_VERSION], [ diff --git a/rust/Cargo.toml.in b/rust/Cargo.toml.in index 69e13347f9..aa6610f829 100644 --- a/rust/Cargo.toml.in +++ b/rust/Cargo.toml.in @@ -4,7 +4,7 @@ version = "@PACKAGE_VERSION@" license = "GPL-2.0-only" description = "Suricata Rust components" edition = "2021" -rust-version = "1.63.0" +rust-version = "1.67.1" [workspace] members = [".", "./derive"]