Initial commit

This commit is contained in:
2025-05-11 15:19:30 +02:00
commit 65b97306ed
8 changed files with 1484 additions and 0 deletions

17
Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[package]
name = "postfix-log-viewer"
version = "0.1.0"
edition = "2021"
[dependencies]
crossterm = { version = "0.27.0", features = ["event-stream"] }
ratatui = { version = "0.24.0", features = ["crossterm"] }
chrono = { version = "0.4.24", features = ["serde"] }
regex = "1.9.0"
anyhow = "1.0.71"
log = "0.4.17"
simplelog = "0.12.1"
lazy_static = "1.4.0"
[features]
default = []