From fee510c32d408b7f6baa11578ae8f80439a2d451 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20M=2E=20Bezerra?= Date: Sun, 26 Sep 2021 16:23:24 -0300 Subject: [PATCH] Reordering imports --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8fd356f..d11f806 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,14 +13,14 @@ description = "A command-line utility for easily compressing and decompressing f # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] +lazy_static = "1.4.0" walkdir = "2.3.2" strsim = "0.10.0" -flate2 = { version = "1.0.22", default-features = false, features = ["zlib"] } bzip2 = "0.4.3" tar = "0.4.37" xz2 = "0.1.6" zip = { version = "0.5.13", default-features = false, features = ["deflate-miniz"] } -lazy_static = "1.4.0" +flate2 = { version = "1.0.22", default-features = false, features = ["zlib"] } [dev-dependencies] tempfile = "3.2.0"