Initial commit

This commit is contained in:
Breadway 2026-07-02 20:59:16 +08:00
commit c5136331b4
16 changed files with 4556 additions and 0 deletions

26
Cargo.toml Normal file
View file

@ -0,0 +1,26 @@
[package]
name = "breadmon"
version = "0.1.0"
edition = "2021"
description = "TUI monitor manager for Hyprland"
license = "MIT"
[[bin]]
name = "breadmon"
path = "src/main.rs"
[dependencies]
ratatui = "0.29"
crossterm = { version = "0.28", features = ["event-stream"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "process", "signal", "sync", "time", "net", "io-util"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
anyhow = "1"
dirs = "5"
futures = "0.3"
[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"