Files
TUI-WM/Cargo.toml
Björn Blomberg 4440ad79bd feat: add configuration management and panel rendering
- Introduced a new `Config` struct for loading application configuration from a TOML file.
- Added support for keybindings and panel configurations, including status widgets.
- Implemented `PtyTerminal` for handling pseudo-terminal interactions.
- Created a rendering module to manage the display of application windows, panels, and dropdowns.
- Refactored the main application loop to utilize the new configuration and rendering logic.
- Removed legacy code related to event handling and rendering from `main.rs`.
2026-03-27 17:01:06 +01:00

18 lines
313 B
TOML

[package]
name = "tui-wm"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "tui-wm"
path = "src/main.rs"
[dependencies]
crossterm = { version = "0.28", features = ["event-stream"] }
ratatui = "0.29"
serde = { version = "1", features = ["derive"] }
toml = "0.8"
portable-pty = "0.8"
vt100 = "0.15"
anyhow = "1"