diff options
| author | Botahamec <botahamec@outlook.com> | 2022-10-22 15:24:16 -0400 |
|---|---|---|
| committer | Botahamec <botahamec@outlook.com> | 2022-10-22 15:24:16 -0400 |
| commit | 912b7aae3029dbf0364f951944ac4ecb1da83178 (patch) | |
| tree | 68a3243d00d81359a30e4c92c8ebef37505b181a | |
| parent | f4885a6ee446a8e807afe771e122ae7282bbe32c (diff) | |
Rigorous check on MSRV
| -rw-r--r-- | Cargo.toml | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -2,8 +2,8 @@ name = "exun" version = "0.1.0" authors = ["Mica White <botahamec@outlook.com>"] -edition = "2021" -rust-version = "1.60" +edition = "2018" +rust-version = "1.41.1" description = "Handle unexpected errors" readme = "README.md" documentation = "https://docs.rs/exun" @@ -12,6 +12,9 @@ license-file = "LICENSE.md" keywords = ["no_std", "no-std", "utility", "error", "error-handling"] categories = ["rust-patterns", "no-std"] +[package.metadata] +msrv = "1.41.1" + [features] default = ["std"] std = []
\ No newline at end of file |
