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:
parent
e32db515a2
commit
7d00bbea90
1 changed files with 1 additions and 0 deletions
|
@ -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 }
|
||||
|
|
Loading…
Add table
Reference in a new issue