- Enhanced error handling with expanded GhostError variants and From impls - Fixed race conditions in TUI (ui.rs unwrap calls) - Added comprehensive module documentation with doc comments - Improved type safety with proper validation in DetectionConfig - Implemented Linux process enumeration via procfs - Refactored TUI for better state management and removed emojis - Enhanced CLI with proper logging initialization - Added example configuration file (examples/ghost.toml) - Updated README with complete feature documentation - Added performance optimizations (saturating arithmetic, reduced clones) - Improved testing framework with proper struct initialization - Added validation and preset modes to DetectionConfig
22 lines
582 B
TOML
22 lines
582 B
TOML
[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.workspace = true
|
|
log.workspace = true
|
|
env_logger.workspace = true
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
tui-input = "0.8"
|
|
unicode-width = "0.1"
|