[package]
edition = "2024"
rust-version = "1.88"
name = "dextui"
version = "0.4.0"
build = false
exclude = [
"CLAUDE.md",
"docs/",
"scripts/",
".gitignore",
"handoff.md",
".claude/",
"AGENTS.md",
".github/",
"dist-workspace.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A two-pane terminal UI for browsing and triaging dex tasks"
homepage = "https://github.com/DanielCarmingham/dextui"
readme = "README.md"
keywords = [
"tui",
"tasks",
"dex",
"terminal",
"ratatui",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/DanielCarmingham/dextui"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ target }{ archive-suffix }"
pkg-fmt = "txz"
bin-dir = "{ name }-{ target }/{ bin }{ binary-ext }"
[[bin]]
name = "dextui"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.104"
[dependencies.chrono]
version = "0.4.45"
features = ["clock"]
default-features = false
[dependencies.crossterm]
version = "0.29.0"
[dependencies.notify]
version = "8.2.0"
[dependencies.ratatui]
version = "0.30.2"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.toml]
version = "1.1.4"
[dependencies.tui-markdown]
version = "0.3.9"
default-features = false
[profile.dist]
lto = "thin"
inherits = "release"