[package]
name = "kasl-cli"
version = "0.9.0"
edition = "2021"
description = "kasl is a comprehensive command-line utility 🛠️ designed to streamline the tracking of work activities 📊, including start times ⏰, pauses ⏸, and task completion"
repository = "https://github.com/lacodda/kasl.git"
authors = ["Kirill Lakhtachev <lahtachev@gmail.com> (https://lacodda.com)"]
readme = "README.md"
license = "MIT"
keywords = ["cli", "tool", "work", "time", "flow"]
categories = ["command-line-utilities"]
build = "build.rs"
exclude = ["docs/", "tools/", ".github/", ".changeset/", "kasl.webp", "CNAME"]
[lib]
name = "kasl"
[[bin]]
name = "kasl"
path = "src/main.rs"
[package.metadata]
owner = "lacodda"
[dependencies]
anyhow = "1.0.93"
thiserror = "2.0.12"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt"] }
base64 = "0.22.1"
aes = "0.7.5"
block-modes = "0.8.1"
block-padding = "0.3.3"
chrono = "0.4.41"
clap = { version = "4.5.42", features = ["derive"] }
dialoguer = "0.11.0"
prettytable-rs = "0.10.0"
reqwest = { version = "0.12.22", features = ["json", "multipart", "cookies"] }
tokio = { version = "1.47.1", features = ["full"] }
rusqlite = { version = "0.37.0", features = ["bundled", "chrono"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.142"
dotenv = "0.15.0"
tar = "0.4.44"
flate2 = "1.1.2"
rdev = "0.5.3"
parking_lot = "0.12.4"
sysinfo = "0.36.1"
encoding_rs = "0.8.35"
csv = "1.3.1"
rust_xlsxwriter = "0.89.1"
indicatif = "0.18.6"
terminal_size = "0.4.4"
unicode-width = "0.2.2"
[build-dependencies]
toml = "0.9.4"
winres = "0.1.12"
dotenv = "0.15.0"
[target.'cfg(unix)'.dependencies]
nix = { version = "0.30.1", features = ["process", "poll"] }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = [
"processthreadsapi",
"winnt",
"handleapi",
"errhandlingapi",
"securitybaseapi",
"processenv",
"winbase",
"namedpipeapi",
"fileapi",
"minwindef",
"consoleapi",
"synchapi",
"wincontypes",
] }
[dev-dependencies]
tempfile = "3.20.0"
test-context = "0.4.1"