[package]
edition = "2024"
name = "ratto"
version = "0.3.2"
authors = ["Kevin Swiber <kevin@swiber.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ratatui-powered terminal primitives for shell dashboards: flicker-free repaints, progress bars, prompts, and portable time tools"
homepage = "https://github.com/kevinswiber/ratto"
documentation = "https://docs.rs/ratto"
readme = "README.md"
keywords = [
"terminal",
"dashboard",
"cli",
"tui",
"shell",
]
categories = [
"command-line-utilities",
"command-line-interface",
]
license = "Apache-2.0"
repository = "https://github.com/kevinswiber/ratto"
[[bin]]
name = "rat"
path = "src/main.rs"
[[test]]
name = "cli_bar"
path = "tests/cli_bar.rs"
[[test]]
name = "cli_choose"
path = "tests/cli_choose.rs"
[[test]]
name = "cli_completion"
path = "tests/cli_completion.rs"
[[test]]
name = "cli_date"
path = "tests/cli_date.rs"
[[test]]
name = "cli_duration"
path = "tests/cli_duration.rs"
[[test]]
name = "cli_frame"
path = "tests/cli_frame.rs"
[[test]]
name = "cli_log"
path = "tests/cli_log.rs"
[[test]]
name = "cli_smoke"
path = "tests/cli_smoke.rs"
[[test]]
name = "cli_spark"
path = "tests/cli_spark.rs"
[[test]]
name = "cli_spin"
path = "tests/cli_spin.rs"
[[test]]
name = "cli_style"
path = "tests/cli_style.rs"
[[test]]
name = "cli_watch"
path = "tests/cli_watch.rs"
[dependencies.anyhow]
version = "1.0.104"
[dependencies.clap]
version = "4.6.4"
features = [
"derive",
"env",
"wrap_help",
]
[dependencies.clap_complete]
version = "4.6.7"
[dependencies.crossterm]
version = "0.29.0"
features = ["use-dev-tty"]
[dependencies.jiff]
version = "0.2.35"
[dependencies.nucleo-matcher]
version = "0.3.1"
[dependencies.ratatui]
version = "0.30.2"
[dependencies.shell-words]
version = "1.1"
[dependencies.strip-ansi-escapes]
version = "0.2.1"
[dependencies.unicode-width]
version = "0.2.2"
[dev-dependencies.assert_cmd]
version = "2.2.2"
[dev-dependencies.predicates]
version = "3.1.4"
[dev-dependencies.rstest]
version = "0.26.1"
[dev-dependencies.tempfile]
version = "3"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(unix)".dependencies.signal-hook]
version = "0.4.4"
[target."cfg(unix)".dev-dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = [
"Win32_System_Console",
"Win32_Foundation",
]