From 3b8c6d921a25a7e9da86db886f0172882ef8e3b7 Mon Sep 17 00:00:00 2001 From: Noah Lev Date: Thu, 21 Oct 2021 13:36:11 -0700 Subject: [PATCH] Switch style-check to Rust 2021 According to `cargo fix --edition`, no migrations were necessary. --- style-check/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style-check/Cargo.toml b/style-check/Cargo.toml index ec56dbaf0..d592f65d0 100644 --- a/style-check/Cargo.toml +++ b/style-check/Cargo.toml @@ -2,7 +2,7 @@ name = "style-check" version = "0.1.0" authors = ["steveklabnik "] -edition = "2018" +edition = "2021" [dependencies] pulldown-cmark = "0.8"