20 lines
651 B
TOML
20 lines
651 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"] }
|
|
syntect = { version = "5.3", default-features = false, features = ["default-syntaxes", "default-themes", "regex-fancy"] }
|
|
tokio.workspace = true
|
|
tui-markdown = { version = "0.3", default-features = false }
|