File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ options:
2525 title : Controls compression for the TRAP files written by the extractor.
2626 description : >
2727 This option is only intended for use in debugging the extractor. Accepted
28- values are 'gzip' (to write gzip-compressed TRAP) 'zstd' (to write
29- Zstandard-compressed TRAP) and 'none' (the default, to write uncompressed
28+ values are 'gzip' (to write gzip-compressed TRAP) 'zstd' (the default,
29+ to write Zstandard-compressed TRAP) and 'none' (to write uncompressed
3030 TRAP).
3131 type : string
3232 pattern : " ^(none|gzip|zstd)$"
Original file line number Diff line number Diff line change @@ -28,9 +28,9 @@ use std::path::{Path, PathBuf};
2828#[ serde( rename_all = "lowercase" ) ]
2929#[ clap( rename_all = "lowercase" ) ]
3030pub enum Compression {
31- #[ default] // TODO make gzip default
3231 None ,
3332 Gzip ,
33+ #[ default]
3434 Zstd ,
3535}
3636
You can’t perform that action at this time.
0 commit comments