From 7d00bbea90d3d7dd72663765e40c926f7327b5f7 Mon Sep 17 00:00:00 2001 From: Jim Turner Date: Tue, 28 Mar 2023 21:57:44 -0400 Subject: [PATCH] Add rust-version field to Cargo.toml This causes compilers older than the MSRV to produce a warning/error which more clearly indicates that the crate needs a newer compiler. See https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 5468919a..17113391 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,6 +9,7 @@ description = """ Library to support the reading and writing of zip files. """ edition = "2021" +rust-version = "1.59.0" [dependencies] aes = { version = "0.7.5", optional = true }