support .zstd, .xz and .bz2 compressed inputs
Some checks are pending
CI / matrix (push) Waiting to run
CI / ${{ matrix.check }} (push) Blocked by required conditions
CI / build (push) Blocked by required conditions
CI / build-nixpkgs (push) Blocked by required conditions

This commit is contained in:
Robin Appelman 2024-11-05 17:21:14 +01:00
commit 4f3d6a17ab
4 changed files with 80 additions and 3 deletions

View file

@ -14,8 +14,6 @@ regex = "1.10.5"
log = "0.4.22"
clap = { version = "=4.1.3", features = ["derive"] }
logsmash-data = { version = "0.1.0", path = "./data" }
zip = "2.1.5"
flate2 = "1.0.31"
itertools = "0.13.0"
ratatui = "0.29.0"
tinystr = { version = "0.7.6", features = ["serde"] }
@ -26,6 +24,11 @@ base64 = "0.22.1"
derive_more = { version = "1.0.0-beta.6", features = ["from"] }
rayon = "1.10.0"
tar = "0.4.42"
zip = "2.1.5"
flate2 = "1.0.31"
xz2 = "0.1.7"
bzip2-rs = "0.1.2"
ruzstd = "0.7.2"
[target.'cfg(not(target_os = "windows"))'.dependencies]
tikv-jemallocator = "0.6.0"