dextui 0.1.0

A two-pane terminal UI for browsing and triaging dex tasks
[package]
name = "dextui"
version = "0.1.0"
edition = "2024"
description = "A two-pane terminal UI for browsing and triaging dex tasks"
license = "MIT"
repository = "https://github.com/DanielCarmingham/dextui"
readme = "README.md"
keywords = ["tui", "tasks", "dex", "terminal", "ratatui"]
categories = ["command-line-utilities"]
# For people working *on* dextui, not people installing it. crates.io resolves
# the README's relative image links against `repository`, so the screenshots
# still render on the crate page without shipping 200 KB to every `cargo
# install`. The scripts are dev tooling and need the repo to be useful anyway.
exclude = ["CLAUDE.md", "docs/", "scripts/", ".gitignore"]
# Edition 2024. Stated so cargo says so plainly rather than failing to parse.
rust-version = "1.85"

[dependencies]
anyhow = "1.0.104"
chrono = { version = "0.4.45", default-features = false, features = ["clock"] }
crossterm = "0.29.0"
notify = "8.2.0"
ratatui = "0.30.2"
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.151"
toml = "1.1.4"
tui-markdown = { version = "0.3.9", default-features = false }