Skip to content

Commit

Permalink
fix: update DEFLATE file extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
camlloyd committed Mar 17, 2024
1 parent 23b5016 commit 236b2ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ impl Format {
Format::Mgzip => ("gz", string_set!["gz", "mgz"]),
#[cfg(feature = "any_zlib")]
Format::Zlib => ("zz", string_set!["zz", "z", "gz"]),
Format::RawDeflate => ("gz", string_set!["gz"]),
Format::RawDeflate => ("deflate", string_set!["deflate", "zz", "z"]),
Format::Snap => ("sz", string_set!["sz", "snappy"]),
}
}
Expand Down

0 comments on commit 236b2ba

Please sign in to comment.