[package]
edition = "2024"
name = "tak-cli"
version = "0.0.3"
build = "build.rs"
exclude = [
".github/",
".gitignore",
"docker/",
"AGENTS.md",
"CLAUDE.md",
"cliff.toml",
"communique.toml",
"mise.toml",
"release-plz.toml",
"renovate.json",
"RELEASING.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Benchmark command-line programs and track their performance over time. Experimental; do not use."
readme = "README.md"
keywords = [
"benchmark",
"performance",
"cli",
"git-notes",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/jdx/tak"
[lib]
name = "tak_cli"
path = "src/lib.rs"
[[bin]]
name = "tak"
path = "src/main.rs"
[[test]]
name = "counters"
path = "tests/counters.rs"
[[test]]
name = "notes_race"
path = "tests/notes_race.rs"
[[test]]
name = "settings_cli"
path = "tests/settings_cli.rs"
[[test]]
name = "subject_env"
path = "tests/subject_env.rs"
[dependencies.anyhow]
version = "1"
[dependencies.asset-picker]
version = "0.0.1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.toml]
version = "1.1.3"
[build-dependencies.toml]
version = "1.1.3"
[profile.release]
lto = true
codegen-units = 1
strip = true