Ruby, Rust: add zstd compression option

This commit is contained in:
Paolo Tranquilli
2025-05-28 16:09:03 +02:00
parent 4a9e31ebd8
commit 923a2854cb
5 changed files with 24 additions and 8 deletions

View File

@@ -27,7 +27,7 @@ options:
title: Controls compression for the TRAP files written by the extractor.
description: >
This option is only intended for use in debugging the extractor. Accepted
values are 'gzip' (the default, to write gzip-compressed TRAP) and 'none'
(to write uncompressed TRAP).
values are 'gzip' (the default, to write gzip-compressed TRAP) 'zstd' (to
write Zstandard-compressed TRAP) and 'none' (to write uncompressed TRAP).
type: string
pattern: "^(none|gzip)$"
pattern: "^(none|gzip|zstd)$"