[package]
edition = "2024"
rust-version = "1.85"
name = "ratado"
version = "0.2.0"
authors = ["Miloš Mirić"]
build = false
exclude = [
".github/",
"docs/",
".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, keyboard-driven terminal task manager built with Rust and Ratatui"
homepage = "https://github.com/milosmiric/ratado"
readme = "README.md"
keywords = [
"todo",
"task",
"terminal",
"tui",
"productivity",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/milosmiric/ratado"
[lib]
name = "ratado"
path = "src/lib.rs"
[[bin]]
name = "ratado"
path = "src/main.rs"
[[test]]
name = "e2e_tests"
path = "tests/e2e_tests.rs"
[dependencies.chrono]
version = "0.4.42"
features = ["serde"]
[dependencies.clap]
version = "4.5.54"
features = ["derive"]
[dependencies.crossterm]
version = "0.29.0"
[dependencies.directories]
version = "6.0.0"
[dependencies.human-date-parser]
version = "0.2"
[dependencies.log]
version = "0.4.29"
[dependencies.open]
version = "5"
[dependencies.ratatui]
version = "0.30.0"
features = ["crossterm"]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.tachyonfx]
version = "0.22"
features = ["std-duration"]
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tokio]
version = "1.49.0"
features = [
"rt-multi-thread",
"macros",
"time",
"sync",
]
[dependencies.toml]
version = "0.9.11"
[dependencies.tui-logger]
version = "0.18.0"
[dependencies.turso]
version = "0.4.3"
[dependencies.uuid]
version = "1.19.0"
features = [
"v4",
"serde",
"v7",
]
[dev-dependencies.expectrl]
version = "0.8"
[dev-dependencies.insta]
version = "1.46.0"
features = ["yaml"]
[dev-dependencies.pretty_assertions]
version = "1.4.1"
[dev-dependencies.tempfile]
version = "3.15"