mirror of
https://codeberg.org/icewind/logsmash.git
synced 2026-06-03 18:14:11 +02:00
cargo updates
This commit is contained in:
parent
c9d53e031d
commit
8a6f31d124
3 changed files with 1013 additions and 435 deletions
1462
Cargo.lock
generated
1462
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
10
Cargo.toml
10
Cargo.toml
|
|
@ -1,8 +1,8 @@
|
||||||
[package]
|
[package]
|
||||||
name = "logsmash"
|
name = "logsmash"
|
||||||
version = "0.2.1"
|
version = "0.2.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.87.0"
|
rust-version = "1.88.0"
|
||||||
license = "GPL-3.0-only"
|
license = "GPL-3.0-only"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
@ -14,7 +14,7 @@ regex = "1.12.2"
|
||||||
clap = { version = "4.5.53", features = ["derive"] }
|
clap = { version = "4.5.53", features = ["derive"] }
|
||||||
logsmash-data = { version = "0.1.0", path = "./data" }
|
logsmash-data = { version = "0.1.0", path = "./data" }
|
||||||
itertools = "0.14.0"
|
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"] }
|
tinystr = { version = "0.8.2", features = ["serde"] }
|
||||||
time = { version = "0.3.44", features = ["serde", "serde-well-known", "parsing", "macros"] }
|
time = { version = "0.3.44", features = ["serde", "serde-well-known", "parsing", "macros"] }
|
||||||
hdrhistogram = "7.5.4"
|
hdrhistogram = "7.5.4"
|
||||||
|
|
@ -23,12 +23,12 @@ base64 = "0.22.1"
|
||||||
derive_more = { version = "2.0.1", features = ["from", "display"] }
|
derive_more = { version = "2.0.1", features = ["from", "display"] }
|
||||||
rayon = "1.11.0"
|
rayon = "1.11.0"
|
||||||
tar = "0.4.44"
|
tar = "0.4.44"
|
||||||
zip = "6.0.0"
|
zip = "8.1.0"
|
||||||
flate2 = "1.1.5"
|
flate2 = "1.1.5"
|
||||||
xz2 = "0.1.7"
|
xz2 = "0.1.7"
|
||||||
bzip2-rs = "0.1.2"
|
bzip2-rs = "0.1.2"
|
||||||
ruzstd = "0.8.2"
|
ruzstd = "0.8.2"
|
||||||
sevenz-rust2 = "0.19.4"
|
sevenz-rust2 = "0.20.2"
|
||||||
dialoguer = "0.12.0"
|
dialoguer = "0.12.0"
|
||||||
indicatif = { version = "0.18.3", features = ["rayon"] }
|
indicatif = { version = "0.18.3", features = ["rayon"] }
|
||||||
csv = "1.4.0"
|
csv = "1.4.0"
|
||||||
|
|
|
||||||
|
|
@ -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()?;
|
enable_raw_mode()?;
|
||||||
stdout().execute(EnterAlternateScreen)?;
|
stdout().execute(EnterAlternateScreen)?;
|
||||||
stdout().execute(EnableMouseCapture)?;
|
stdout().execute(EnableMouseCapture)?;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue