[package]
name = "ts-cli"
description = "Timestudy: Track your activities on the command line."
version = "0.3.0"
authors = ["Kris Warner <kdwarn@protonmail.com>"]
repository = "https://codeberg.org/kdwarn/ts-cli"
homepage = "https://kdwarn.net/projects/timestudy"
edition = "2021"
license = "AGPL-3.0-or-later"
keywords = ["cli", "tracker", "activity", "time"]
categories = ["command-line-utilities"]
[dependencies]
chrono = { version = "0.4", features = ["clock"] }
chrono-tz = "0.6.3"
clap = { version = "4.2", features = ["derive", "wrap_help"] }
clap_complete = "4.1"
colored = "2.0"
dateparser = "0.2.0"
timestudy = "0.10"
[dev-dependencies]
assert_cmd = "2.0.8"
timestudy = {version = "0.10", features = ["test-utils"] }
predicates = "3.0"
[[bin]]
name = "ts"
path = "src/main.rs"
[profile.release]
strip = true
opt-level = "z"
lto = true
panic = "abort"
codegen-units = 1