From 2ef769803c6a30089b78f6343c31423190c9cf1f Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Tue, 9 Feb 2021 15:42:19 +0100 Subject: [PATCH] Update .rustfmt.toml `merge_imports` has been deprecated in favor of the new, more general setting `imports_granularity`. --- .rustfmt.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.rustfmt.toml b/.rustfmt.toml index b47ba7c7..c17d7f31 100644 --- a/.rustfmt.toml +++ b/.rustfmt.toml @@ -1,6 +1,6 @@ comment_width = 100 edition = "2018" -merge_imports = true +imports_granularity = "Crate" newline_style = "Unix" use_small_heuristics = "Max" wrap_comments = true