From 77574b4f30c038212842da73bb9353bdd7a0a782 Mon Sep 17 00:00:00 2001 From: David Aguilar Date: Sun, 17 Mar 2024 00:49:13 -0700 Subject: [PATCH] Cargo.toml: enable the Rust 2021 Edition --- parser/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser/Cargo.toml b/parser/Cargo.toml index c69712e..a62945d 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0" description = "A fully YAML 1.2 compliant YAML parser" repository = "https://github.com/Ethiraric/yaml-rust2" readme = "README.md" -edition = "2018" +edition = "2021" [dependencies] arraydeque = "0.5.1"