From 2eb68caf81df30dc29eb573a43f61fce77a2c04a Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Tue, 31 Jan 2023 08:20:38 +1100 Subject: [PATCH] Remove the rustfmt required_version config option The `rustfmt` config option `required_version` causes grief in CI because everytime `rustfmt` is update our `nightly` job fails. Since we require nightly anyways to run `rustfmt` the config option is basically redundant. --- rustfmt.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/rustfmt.toml b/rustfmt.toml index 28472f9a..0537a4b4 100644 --- a/rustfmt.toml +++ b/rustfmt.toml @@ -76,7 +76,6 @@ use_field_init_shorthand = false force_explicit_abi = true condense_wildcard_suffixes = false color = "Auto" -required_version = "1.5.1" unstable_features = false disable_all_formatting = false skip_children = false