-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (40 loc) · 1.2 KB
/
Cargo.toml
File metadata and controls
45 lines (40 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "ccstats"
version = "0.2.62"
edition = "2024"
rust-version = "1.88"
description = "Fast token and cost usage statistics CLI for Claude Code, OpenAI Codex, and Cursor"
license = "MIT"
repository = "https://github.com/majiayu000/ccstats"
keywords = ["claude", "codex", "cursor", "token", "usage"]
categories = ["command-line-utilities"]
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/ccstats-{ target }.tar.gz"
pkg-fmt = "tgz"
bin-dir = "ccstats"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-url = "{ repo }/releases/download/v{ version }/ccstats-{ target }.zip"
pkg-fmt = "zip"
bin-dir = "ccstats.exe"
[dependencies]
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
glob = "0.3.3"
chrono = { version = "0.4.43", features = ["serde"] }
chrono-tz = "0.10.4"
clap = { version = "4.5.58", features = ["derive"] }
comfy-table = "7.2.2"
rayon = "1.11.0"
dirs = "6.0.0"
ureq = { version = "3.2.0", features = ["json"] }
thiserror = "2"
toml = "1.0.0"
rusqlite = { version = "0.39.0", features = ["bundled"] }
[dev-dependencies]
tempfile = "3"
[profile.release]
lto = true
codegen-units = 1
strip = true
panic = "abort"
opt-level = "z"