18 lines
468 B
TOML
18 lines
468 B
TOML
[package]
|
|
name = "gotcha-tui"
|
|
version = "1.0.0"
|
|
description = "Ratatui terminal client for Gitea and Forgejo"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[[bin]]
|
|
name = "gotcha-tui"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
crossterm = "0.29"
|
|
gotcha_gitea = { path = "../gitea" }
|
|
ratatui = { version = "0.30", default-features = false, features = ["crossterm_0_29", "layout-cache", "macros", "underline-color"] }
|
|
tokio.workspace = true
|