set envvars

This commit is contained in:
Jana Dönszelmann 2026-02-20 12:40:07 +01:00
commit 3963fc50c3
No known key found for this signature in database
9 changed files with 3248 additions and 0 deletions

18
Cargo.toml Normal file
View file

@ -0,0 +1,18 @@
[package]
name = "rustc-logviz"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "lv"
path = "./src/main.rs"
[dependencies]
clap = {version="4.5", features=["derive"]}
jiff = {version = "0.2", features = ["serde"]}
ratatui = {version = "0.30.0", features=["unstable-rendered-line-info"]}
ratatui-themes = { version = "0.2", features = ["serde"] }
tui-widget-list = "0.15"
serde = {version = "1", features = ["derive"]}
serde_json = "1"
thiserror = "2"