Declare minimum Rust version in Cargo metadata

This commit is contained in:
David Tolnay 2021-10-02 02:19:41 -04:00
parent bda41eb005
commit ed234d41b5
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
2 changed files with 2 additions and 0 deletions

View file

@ -3,6 +3,7 @@ name = "thiserror"
version = "1.0.29" version = "1.0.29"
authors = ["David Tolnay <dtolnay@gmail.com>"] authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018" edition = "2018"
rust-version = "1.31"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
description = "derive(Error)" description = "derive(Error)"
repository = "https://github.com/dtolnay/thiserror" repository = "https://github.com/dtolnay/thiserror"

View file

@ -3,6 +3,7 @@ name = "thiserror-impl"
version = "1.0.29" version = "1.0.29"
authors = ["David Tolnay <dtolnay@gmail.com>"] authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018" edition = "2018"
rust-version = "1.31"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
description = "Implementation detail of the `thiserror` crate" description = "Implementation detail of the `thiserror` crate"
repository = "https://github.com/dtolnay/thiserror" repository = "https://github.com/dtolnay/thiserror"