Run cargo fmt

This commit is contained in:
Spyros Roum 2021-10-22 14:47:44 +03:00
parent 02657ee5bc
commit caca7901c4

View File

@ -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 {