From a2e825e42357c693dd145330cedf2bc27e1cd343 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20B=C3=BChler?= Date: Sun, 6 Jun 2021 10:57:14 +0200 Subject: [PATCH] rustfmt: `merge_imports` option got deprecated, use `imports_granularity=Crate` instead --- rustfmt.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rustfmt.toml b/rustfmt.toml index 2d80e57c..4289758b 100644 --- a/rustfmt.toml +++ b/rustfmt.toml @@ -1,4 +1,4 @@ # requires unstable rustfmt until the options are stabilized format_code_in_doc_comments = true imports_layout = "HorizontalVertical" -merge_imports = true +imports_granularity = "Crate"