From 79c330cb74c2b4b57bcc8838e0ea4bdd3adb7690 Mon Sep 17 00:00:00 2001 From: est31 Date: Sat, 15 Apr 2023 08:57:02 +0200 Subject: [PATCH] Put MSRV into Cargo.toml Also remove it from clippy.toml as clippy reads it from Cargo.toml since 1.64. CI only runs clippy from latest stable and not from the MSRV so this shouldn't be a problem. --- Cargo.toml | 1 + clippy.toml | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 clippy.toml diff --git a/Cargo.toml b/Cargo.toml index 598b2be6c..2f4e3e36f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,6 +13,7 @@ A lightweight logging facade for Rust categories = ["development-tools::debugging"] keywords = ["logging"] exclude = ["rfcs/**/*"] +rust-version = "1.60.0" [package.metadata.docs.rs] features = ["std", "serde", "kv_unstable_std", "kv_unstable_sval", "kv_unstable_serde"] diff --git a/clippy.toml b/clippy.toml deleted file mode 100644 index 16caf02ee..000000000 --- a/clippy.toml +++ /dev/null @@ -1 +0,0 @@ -msrv = "1.60.0"