From 3675d35f1c71a1224fb7719ff22aca67b66d06ec Mon Sep 17 00:00:00 2001 From: Matthew Gumport Date: Mon, 8 Apr 2024 11:53:48 -0700 Subject: [PATCH] add edition to `.rustfmt.toml` My editor was defaulting to using the 2015 edition of the parser since that's the default for an unset edition in fmt file. This fixes that by specifying that we want to use the same edition for formatting that we do everywhere else. --- .bleep | 2 +- .rustfmt.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.bleep b/.bleep index ee7266e..74fe28f 100644 --- a/.bleep +++ b/.bleep @@ -1 +1 @@ -a92e9ba819522dbe0750e9cd9be49d8b813a4e69 \ No newline at end of file +d2b0975beaec744968a4936eb80483fac65f7e35 \ No newline at end of file diff --git a/.rustfmt.toml b/.rustfmt.toml index e69de29..3a26366 100644 --- a/.rustfmt.toml +++ b/.rustfmt.toml @@ -0,0 +1 @@ +edition = "2021"