You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by mg...@apache.org on 2022/02/03 10:19:25 UTC

[avro] branch master updated: Fix deprecation warning in rustfmt config

This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/master by this push:
     new fa443cf  Fix deprecation warning in rustfmt config
fa443cf is described below

commit fa443cf8c12b3f4cddf85c4a28f6b6aab68a148f
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
AuthorDate: Thu Feb 3 12:18:27 2022 +0200

    Fix deprecation warning in rustfmt config
    
    https://rust-lang.github.io/rustfmt/?search=&version=v1.4.38#merge_imports
    
    Signed-off-by: Martin Tzvetanov Grigorov <mg...@apache.org>
---
 lang/rust/rustfmt.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lang/rust/rustfmt.toml b/lang/rust/rustfmt.toml
index 7269b10..90ae52c 100644
--- a/lang/rust/rustfmt.toml
+++ b/lang/rust/rustfmt.toml
@@ -16,4 +16,4 @@
 # under the License.
 
 edition = "2018"
-merge_imports = true
+imports_granularity="Crate"