From 6123343a4c338e1f1f4db69e2a1adac78e638c6c Mon Sep 17 00:00:00 2001 From: Yuri Astrakhan Date: Sun, 20 Aug 2023 02:36:30 -0400 Subject: [PATCH] Set all crates to 2021 edition --- Cargo.toml | 1 + test_max_level_features/Cargo.toml | 1 + tests/Cargo.toml | 1 + 3 files changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 77ed145ef..89012be02 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,6 +14,7 @@ categories = ["development-tools::debugging"] keywords = ["logging"] exclude = ["rfcs/**/*"] rust-version = "1.60.0" +edition = "2021" [package.metadata.docs.rs] features = ["std", "serde", "kv_unstable_std", "kv_unstable_sval", "kv_unstable_serde"] diff --git a/test_max_level_features/Cargo.toml b/test_max_level_features/Cargo.toml index 9d0b9759b..ae23058f9 100644 --- a/test_max_level_features/Cargo.toml +++ b/test_max_level_features/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "optimized" version = "0.1.0" +edition = "2021" publish = false [[bin]] diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 25ac12bec..88f37b5d4 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "integration" version = "0.1.0" +edition = "2021" publish = false build = "src/build.rs"