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
This commit is contained in:
Jim Turner 2023-03-28 21:57:44 -04:00
parent e32db515a2
commit 7d00bbea90

View file

@ -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 }