[package]
edition = "2024"
name = "tascli"
version = "0.14.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple CLI tool for tracking tasks and records from terminal"
readme = "README.md"
license = "MIT"
repository = "https://github.com/Aperocky/tascli"
[[bin]]
name = "tascli"
path = "src/main.rs"
[[test]]
name = "basic_operations"
path = "tests/basic_operations.rs"
[[test]]
name = "interactive_batch"
path = "tests/interactive_batch.rs"
[[test]]
name = "interactive_done"
path = "tests/interactive_done.rs"
[[test]]
name = "merge"
path = "tests/merge.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.home]
version = "0.5.11"
[dependencies.nanoserde]
version = "0.2.1"
[dependencies.rusqlite]
version = "0.38"
features = ["bundled"]
[dependencies.terminal_size]
version = "0.4"
[dependencies.unicode-width]
version = "0.2.0"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.predicates]
version = "3.0"
[dev-dependencies.tempfile]
version = "3.19.0"
[profile.release]
opt-level = "z"
lto = true
strip = true