[package]
name = "tempo-cli"
version = "0.4.0"
edition = "2021"
authors = ["Own Path <brandy.daryl@gmail.com>"]
description = "Automatic project time tracking CLI tool with beautiful terminal interface"
license = "MIT"
repository = "https://github.com/own-path/tempo"
homepage = "https://github.com/own-path/tempo"
documentation = "https://docs.rs/tempo-cli"
readme = "README.md"
keywords = ["time-tracking", "productivity", "cli", "terminal", "tui"]
categories = ["command-line-utilities", "development-tools"]
exclude = ["examples/", ".github/", "docs/"]
[lib]
name = "tempo_cli"
path = "src/lib.rs"
[[bin]]
name = "tempo"
path = "src/main.rs"
[[bin]]
name = "tempo-daemon"
path = "src/daemon/main.rs"
[dependencies]
tokio = { version = "1.0", features = ["full"] }
clap = { version = "4.0", features = ["derive", "color"] }
clap_complete = "4.0"
rusqlite = { version = "0.30", features = ["bundled", "chrono", "backup"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
notify = "6.0"
sysinfo = "0.30"
env_logger = "0.10"
log = "0.4"
toml = "0.8"
anyhow = "1.0"
thiserror = "1.0"
dirs = "5.0"
uuid = { version = "1.0", features = ["v4"] }
libc = "0.2"
ratatui = "0.24"
crossterm = "0.27"
ratatui-textarea = "0.4"
taffy = "0.3"
indicatif = "0.17"
tempfile = "3.0"
reqwest = { version = "0.12", features = ["json"] }
semver = "1.0"
rand = "0.8"
[dev-dependencies]
criterion = "0.5"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true