-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 706 Bytes
/
Cargo.toml
File metadata and controls
30 lines (28 loc) · 706 Bytes
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
[package]
name = "multi-provider-usage-widget"
version = "0.1.0"
edition = "2024"
rust-version = "1.95"
description = "Multi-provider AI subscription usage TUI (Claude, Codex, SuperGrok)"
[dependencies]
ratatui = "0.29"
crossterm = "0.28"
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
jiff = "0.2"
anyhow = "1"
thiserror = "2"
dirs = "5"
fd-lock = "4"
crossbeam-channel = "0.5"
glob = "0.3"
base64 = "0.22"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1