[package]
edition = "2024"
rust-version = "1.95"
name = "rdice-tui"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Terminal UI for persistent dice trays powered by rdice-core"
homepage = "https://github.com/nilzx/rdice"
documentation = "https://docs.rs/rdice-tui"
readme = "README.md"
keywords = [
"dice",
"tui",
"terminal",
"tabletop",
"ttrpg",
]
categories = [
"command-line-utilities",
"games",
]
license = "MIT"
repository = "https://github.com/nilzx/rdice"
[lib]
name = "rdice_tui"
path = "src/lib.rs"
[[bin]]
name = "rdice-tui"
path = "src/main.rs"
[[test]]
name = "app_test"
path = "tests/app_test.rs"
[[test]]
name = "command_test"
path = "tests/command_test.rs"
[[test]]
name = "history_test"
path = "tests/history_test.rs"
[[test]]
name = "input_test"
path = "tests/input_test.rs"
[[test]]
name = "manager_render_test"
path = "tests/manager_render_test.rs"
[[test]]
name = "overview_test"
path = "tests/overview_test.rs"
[[test]]
name = "storage_test"
path = "tests/storage_test.rs"
[[test]]
name = "ui_test"
path = "tests/ui_test.rs"
[dependencies.crossterm]
version = "0.29"
[dependencies.dirs]
version = "6"
[dependencies.ratatui]
version = "0.30"
[dependencies.rdice-core]
version = "0.1.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.toml]
version = "1.1.2"
[dependencies.unicode-width]
version = "0.2"