- Refactor `event` handling (heavily inspired by [crates-tui](https://github.com/ratatui/crates-tui/) via [Tui with Terminal and EventHandler](https://ratatui.rs/recipes/apps/terminal-and-event-handler/)) - Refactor widget structure - Disable `nixos-unstable` temporarily - Add `.rustfmt.toml`
16 lines
404 B
TOML
16 lines
404 B
TOML
[package]
|
|
name = "timr"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
ratatui = "0.29.0"
|
|
crossterm = {version = "0.28.1", features = ["event-stream", "serde"] }
|
|
color-eyre = "0.6.2"
|
|
futures = "0.3"
|
|
serde = { version = "1", features = ["derive"] }
|
|
strum = { version = "0.26.3", features = ["derive"] }
|
|
tokio = { version = "1.41.1", features = ["full"] }
|
|
tokio-stream = "0.1.16"
|
|
tokio-util = "0.7.12"
|