[package]
edition = "2021"
name = "kasl-cli"
version = "0.9.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 = "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 = "breaks"
path = "tests/breaks.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.7.5"
[dependencies.anyhow]
version = "1.0.93"
[dependencies.base64]
version = "0.22.1"
[dependencies.block-modes]
version = "0.8.1"
[dependencies.block-padding]
version = "0.3.3"
[dependencies.chrono]
version = "0.4.41"
[dependencies.clap]
version = "4.5.42"
features = ["derive"]
[dependencies.csv]
version = "1.3.1"
[dependencies.dialoguer]
version = "0.11.0"
[dependencies.dotenv]
version = "0.15.0"
[dependencies.encoding_rs]
version = "0.8.35"
[dependencies.flate2]
version = "1.1.2"
[dependencies.indicatif]
version = "0.18.6"
[dependencies.parking_lot]
version = "0.12.4"
[dependencies.prettytable-rs]
version = "0.10.0"
[dependencies.rdev]
version = "0.5.3"
[dependencies.reqwest]
version = "0.12.22"
features = [
"json",
"multipart",
"cookies",
]
[dependencies.rusqlite]
version = "0.37.0"
features = [
"bundled",
"chrono",
]
[dependencies.rust_xlsxwriter]
version = "0.89.1"
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.142"
[dependencies.sysinfo]
version = "0.36.1"
[dependencies.tar]
version = "0.4.44"
[dependencies.terminal_size]
version = "0.4.4"
[dependencies.thiserror]
version = "2.0.12"
[dependencies.tokio]
version = "1.47.1"
features = ["full"]
[dependencies.tracing]
version = "0.1.41"
[dependencies.tracing-subscriber]
version = "0.3.18"
features = [
"env-filter",
"fmt",
]
[dependencies.unicode-width]
version = "0.2.2"
[dev-dependencies.tempfile]
version = "3.20.0"
[dev-dependencies.test-context]
version = "0.4.1"
[build-dependencies.dotenv]
version = "0.15.0"
[build-dependencies.toml]
version = "0.9.4"
[build-dependencies.winres]
version = "0.1.12"
[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",
]