From 0c6ccad8ddaa8166fc56c550f369dfc59be49dfd Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 29 Jul 2024 17:31:44 -0400 Subject: [PATCH] Bump MSRV to 1.79 It's what's in c9s right now, and I want to make use of a newer API. Signed-off-by: Colin Walters --- cli/Cargo.toml | 3 ++- lib/Cargo.toml | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index ff2af241..6f6d841f 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -6,7 +6,8 @@ license = "MIT OR Apache-2.0" repository = "https://github.com/containers/bootc" readme = "README.md" publish = false -rust-version = "1.63.0" +# For now don't bump this above what is currently shipped in RHEL9. +rust-version = "1.75.0" default-run = "bootc" # See https://github.com/coreos/cargo-vendor-filterer diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 2b50795f..aa071c5f 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -6,6 +6,8 @@ name = "bootc-lib" readme = "README.md" repository = "https://github.com/containers/bootc" version = "0.1.14" +# For now don't bump this above what is currently shipped in RHEL9; +# also keep in sync with the version in cli. rust-version = "1.75.0" build = "build.rs"