From caca7901c487f183526e9a1ec2c9e2432653cc6b Mon Sep 17 00:00:00 2001 From: Spyros Roum Date: Fri, 22 Oct 2021 14:47:44 +0300 Subject: [PATCH] Run `cargo fmt` --- src/extension.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/extension.rs b/src/extension.rs index 1349a28..137b963 100644 --- a/src/extension.rs +++ b/src/extension.rs @@ -7,12 +7,12 @@ use self::CompressionFormat::*; #[derive(Clone, PartialEq, Eq, Debug)] /// Accepted extensions for input and output pub enum CompressionFormat { - Gzip, // .gz - Bzip, // .bz - Lzma, // .lzma - Tar, // .tar (technically not a compression extension, but will do for now) - Zstd, // .zst - Zip, // .zip + Gzip, // .gz + Bzip, // .bz + Lzma, // .lzma + Tar, // .tar (technically not a compression extension, but will do for now) + Zstd, // .zst + Zip, // .zip } impl CompressionFormat {