tak-cli 0.0.3

Benchmark command-line programs and track their performance over time. Experimental; do not use.
Documentation
[workspace]
members = ["crates/asset-picker"]

[package]
name = "tak-cli"
version = "0.0.3"
edition = "2024"
description = "Benchmark command-line programs and track their performance over time. Experimental; do not use."
keywords = ["benchmark", "performance", "cli", "git-notes"]
categories = ["command-line-utilities", "development-tools"]
readme = "README.md"
# Published crates carry the source and its licence, not the machinery used to
# develop and ship it. Everything below is repository furniture.
exclude = [
    ".github/",
    ".gitignore",
    "docker/",
    "AGENTS.md",
    "CLAUDE.md",
    "cliff.toml",
    "communique.toml",
    "mise.toml",
    "release-plz.toml",
    "renovate.json",
    "RELEASING.md",
]
license = "MIT"
repository = "https://github.com/jdx/tak"

[lib]
name = "tak_cli"
path = "src/lib.rs"

[[bin]]
name = "tak"
path = "src/main.rs"

[dependencies]
anyhow = "1"
asset-picker = { path = "crates/asset-picker", version = "0.0.1" }
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "1.1.3"

[profile.release]
lto = true
codegen-units = 1
strip = true

[build-dependencies]
toml = "1.1.3"