[package]
name = "llmstat"
version = "0.2.2"
edition = "2024"
description = "Token usage distribution and cost across local LLM CLIs"
license = "MIT"
repository = "https://github.com/lexoliu/llmstat"
keywords = ["llm", "tokens", "cost", "usage", "cli"]
categories = ["command-line-utilities"]
[dependencies]
anyhow = "1"
bincode = "1.3"
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
clap = { version = "4", features = ["derive"] }
crossterm = "0.29"
indicatif = "0.17"
ratatui = "0.30"
rayon = "1.12.0"
rusqlite = { version = "0.40.2", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
terminal_size = "0.4"
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
ureq = "3"
walkdir = "2"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
[profile.release]
lto = true
codegen-units = 1
strip = true
[profile.dist]
inherits = "release"
lto = "thin"