[package]
edition = "2024"
rust-version = "1.97"
name = "kasl-cli"
version = "1.0.0"
authors = ["Kirill Lakhtachev <lahtachev@gmail.com> (https://lacodda.com)"]
build = "build.rs"
exclude = [
"docs/",
"tools/",
".github/",
".changeset/",
"kasl.webp",
"CNAME",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "kasl is a comprehensive command-line utility 🛠️ designed to streamline the tracking of work activities 📊, including start times ⏰, pauses ⏸, and task completion"
readme = "README.md"
keywords = [
"cli",
"tool",
"work",
"time",
"flow",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/lacodda/kasl.git"
[package.metadata]
owner = "lacodda"
[lib]
name = "kasl"
path = "src/lib.rs"
[[bin]]
name = "ka"
path = "src/bin/ka.rs"
[[bin]]
name = "kasl"
path = "src/main.rs"
[[test]]
name = "api_session"
path = "tests/api_session.rs"
[[test]]
name = "autostart"
path = "tests/autostart.rs"
[[test]]
name = "basic_functionality"
path = "tests/basic_functionality.rs"
[[test]]
name = "commands"
path = "tests/commands.rs"
[[test]]
name = "commands_simple"
path = "tests/commands_simple.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "daemon"
path = "tests/daemon.rs"
[[test]]
name = "daemon_lifecycle"
path = "tests/daemon_lifecycle.rs"
[[test]]
name = "export"
path = "tests/export.rs"
[[test]]
name = "formatters"
path = "tests/formatters.rs"
[[test]]
name = "integration_simple"
path = "tests/integration_simple.rs"
[[test]]
name = "integration_workflows"
path = "tests/integration_workflows.rs"
[[test]]
name = "migrations"
path = "tests/migrations.rs"
[[test]]
name = "monitor"
path = "tests/monitor.rs"
[[test]]
name = "productivity"
path = "tests/productivity.rs"
[[test]]
name = "report"
path = "tests/report.rs"
[[test]]
name = "report_functions"
path = "tests/report_functions.rs"
[[test]]
name = "secret"
path = "tests/secret.rs"
[[test]]
name = "short_intervals"
path = "tests/short_intervals.rs"
[[test]]
name = "tags"
path = "tests/tags.rs"
[[test]]
name = "tasks_crud"
path = "tests/tasks_crud.rs"
[[test]]
name = "templates"
path = "tests/templates.rs"
[[test]]
name = "watch_restart"
path = "tests/watch_restart.rs"
[[test]]
name = "workdays"
path = "tests/workdays.rs"
[dependencies.aes]
version = "0.9.2"
[dependencies.anyhow]
version = "1.0.104"
[dependencies.base64]
version = "0.23.1"
[dependencies.cbc]
version = "0.2.1"
features = ["alloc"]
[dependencies.chrono]
version = "0.4.45"
[dependencies.clap]
version = "4.6.6"
features = ["derive"]
[dependencies.clap_complete]
version = "4.6.9"
[dependencies.csv]
version = "1.4.0"
[dependencies.dialoguer]
version = "0.12.0"
[dependencies.dotenv]
version = "0.15.0"
[dependencies.encoding_rs]
version = "0.8.35"
[dependencies.flate2]
version = "1.1.9"
[dependencies.indicatif]
version = "0.18.6"
[dependencies.keyring]
version = "4.1.6"
features = [
"apple-native-keyring-store",
"windows-native-keyring-store",
"zbus-secret-service-keyring-store",
]
[dependencies.parking_lot]
version = "0.12.5"
[dependencies.prettytable-rs]
version = "0.10.0"
[dependencies.rdev]
version = "0.5.3"
[dependencies.reqwest]
version = "0.13.4"
features = [
"json",
"multipart",
"cookies",
"query",
]
[dependencies.rusqlite]
version = "0.40.1"
features = [
"bundled",
"chrono",
]
[dependencies.rust_xlsxwriter]
version = "0.97.1"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.sysinfo]
version = "0.39.6"
[dependencies.tar]
version = "0.4.46"
[dependencies.terminal_size]
version = "0.4.4"
[dependencies.thiserror]
version = "2.0.19"
[dependencies.tokio]
version = "1.53.1"
features = ["full"]
[dependencies.tracing]
version = "0.1.44"
[dependencies.tracing-subscriber]
version = "0.3.23"
features = [
"env-filter",
"fmt",
]
[dependencies.unicode-width]
version = "0.2.2"
[dev-dependencies.serial_test]
version = "4.0.1"
[dev-dependencies.tempfile]
version = "3.27.0"
[dev-dependencies.test-context]
version = "0.5.8"
[build-dependencies.dotenv]
version = "0.15.0"
[build-dependencies.toml]
version = "1.1.4"
[build-dependencies.winres]
version = "0.1.12"
[target."cfg(not(windows))".dependencies.notify-rust]
version = "=4.11.0"
[target."cfg(unix)".dependencies.nix]
version = "0.31.3"
features = [
"process",
"poll",
]
[target."cfg(windows)".dependencies.win-toast-notify]
version = "0.1.6"
[target."cfg(windows)".dependencies.winapi]
version = "0.3"
features = [
"processthreadsapi",
"winnt",
"handleapi",
"errhandlingapi",
"securitybaseapi",
"processenv",
"winbase",
"namedpipeapi",
"fileapi",
"minwindef",
"consoleapi",
"synchapi",
"wincontypes",
]