feat: implement sophisticated TUI with real-time monitoring

This commit is contained in:
Adir Shitrit
2025-11-08 11:23:10 +02:00
parent cbbd68fa55
commit 5794afb4a0
7 changed files with 990 additions and 8 deletions

19
ghost-tui/Cargo.toml Normal file
View File

@@ -0,0 +1,19 @@
[package]
name = "ghost-tui"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
description = "Terminal user interface for Ghost process injection detection"
[dependencies]
ghost-core = { path = "../ghost-core" }
ratatui = "0.24"
crossterm = "0.27"
tokio = { version = "1.0", features = ["full"] }
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
tui-input = "0.8"
unicode-width = "0.1"