[package]
edition = "2024"
name = "tokidex"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "macOS terminal UI for inspecting local Codex token usage"
homepage = "https://github.com/michaelmjhhhh/tokidex"
readme = "README.md"
keywords = [
"codex",
"tokens",
"tui",
"macos",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/michaelmjhhhh/tokidex"
[lib]
name = "tokidex"
path = "src/lib.rs"
[[bin]]
name = "tokidex"
path = "src/main.rs"
[[test]]
name = "codex_store"
path = "tests/codex_store.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
features = ["clock"]
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
]
[dependencies.crossterm]
version = "0.28"
[dependencies.dirs]
version = "6.0"
[dependencies.ratatui]
version = "0.29"
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.tempfile]
version = "3.14"