Add initial implementation of TUI-WM with README, build tasks, and configuration files

This commit is contained in:
Björn Blomberg
2026-03-27 14:52:50 +01:00
parent f50ffa04de
commit d7c70baf35
7 changed files with 932 additions and 1 deletions

12
Cargo.toml Normal file
View File

@@ -0,0 +1,12 @@
[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"