ts-cli 0.3.0

Timestudy: Track your activities on the command line.
[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"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[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"

# minimize binary size
[profile.release]
strip = true       # strip debugging symbols
opt-level = "z"    # optimize for size
lto = true         # enable link time optimization
panic = "abort"    # abort on panic
codegen-units = 1  # reduce parallel code generation units to increase optimization