cargo updates

This commit is contained in:
Robin Appelman 2026-02-26 15:23:54 +01:00
commit 8a6f31d124
3 changed files with 1013 additions and 435 deletions

1462
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,8 +1,8 @@
[package]
name = "logsmash"
version = "0.2.1"
version = "0.2.2"
edition = "2021"
rust-version = "1.87.0"
rust-version = "1.88.0"
license = "GPL-3.0-only"
[dependencies]
@ -14,7 +14,7 @@ regex = "1.12.2"
clap = { version = "4.5.53", features = ["derive"] }
logsmash-data = { version = "0.1.0", path = "./data" }
itertools = "0.14.0"
ratatui = { version = "0.29.0", features = ["unstable-rendered-line-info"] }
ratatui = { version = "0.30.0", features = ["unstable-rendered-line-info"] }
tinystr = { version = "0.8.2", features = ["serde"] }
time = { version = "0.3.44", features = ["serde", "serde-well-known", "parsing", "macros"] }
hdrhistogram = "7.5.4"
@ -23,12 +23,12 @@ base64 = "0.22.1"
derive_more = { version = "2.0.1", features = ["from", "display"] }
rayon = "1.11.0"
tar = "0.4.44"
zip = "6.0.0"
zip = "8.1.0"
flate2 = "1.1.5"
xz2 = "0.1.7"
bzip2-rs = "0.1.2"
ruzstd = "0.8.2"
sevenz-rust2 = "0.19.4"
sevenz-rust2 = "0.20.2"
dialoguer = "0.12.0"
indicatif = { version = "0.18.3", features = ["rayon"] }
csv = "1.4.0"

View file

@ -73,7 +73,7 @@ pub fn init_panic_hook() {
}));
}
pub fn init_tui() -> io::Result<Terminal<impl Backend>> {
pub fn init_tui() -> io::Result<Terminal<impl Backend<Error = io::Error>>> {
enable_raw_mode()?;
stdout().execute(EnterAlternateScreen)?;
stdout().execute(EnableMouseCapture)?;