[package]
edition = "2024"
rust-version = "1.85"
name = "tokr"
version = "0.1.0"
build = false
include = [
"/src",
"/data",
"/harnesses",
"/assets/readme",
"/Cargo.lock",
"/Cargo.toml",
"/LICENSE",
"/README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Persistent token-usage ledger for AI coding agents. Captures on write, queries forever."
documentation = "https://docs.rs/tokr"
readme = "README.md"
keywords = [
"cli",
"tokens",
"codex",
"claude-code",
"sqlite",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/Codycody31/tokr"
[[bin]]
name = "tokr"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.directories]
version = "5"
[dependencies.flate2]
version = "1"
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.toml]
version = "0.8"
[dependencies.ureq]
version = "2"
features = [
"tls",
"json",
"gzip",
]
default-features = false
[dependencies.walkdir]
version = "2"
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
format_in_format_args = "allow"
format_push_string = "allow"
items_after_statements = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
return_self_not_must_use = "allow"
similar_names = "allow"
struct_excessive_bools = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"
unused_must_use = "warn"
[profile.dev]
split-debuginfo = "unpacked"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
strip = true