| 1 |
[package] |
| 2 |
name = "ripgrow-tui" |
| 3 |
version.workspace = true |
| 4 |
edition.workspace = true |
| 5 |
license-file.workspace = true |
| 6 |
repository.workspace = true |
| 7 |
description = "Ratatui frontend for ripgrow, a resistance-training programmer." |
| 8 |
|
| 9 |
[[bin]] |
| 10 |
name = "ripgrow" |
| 11 |
path = "src/main.rs" |
| 12 |
|
| 13 |
[dependencies] |
| 14 |
ripgrow-core = { workspace = true } |
| 15 |
ratatui = { workspace = true } |
| 16 |
crossterm = { workspace = true } |
| 17 |
dirs = { workspace = true } |
| 18 |
thiserror = { workspace = true } |
| 19 |
chrono = { workspace = true } |
| 20 |
supernote-push = { workspace = true } |
| 21 |
serde = { workspace = true } |
| 22 |
toml = { workspace = true } |
| 23 |
|