-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathCargo.toml
More file actions
91 lines (69 loc) · 1.79 KB
/
Cargo.toml
File metadata and controls
91 lines (69 loc) · 1.79 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[workspace]
resolver = "2"
members = [
"crates/tokscale-core",
"crates/tokscale-cli",
]
[workspace.package]
version = "2.0.0"
edition = "2021"
authors = ["Junho Yeo <hello@junho.io>"]
license = "MIT"
repository = "https://github.com/junhoyeo/tokscale"
[workspace.dependencies]
# Internal crates
tokscale-core = { path = "crates/tokscale-core" }
# Parallelism
rayon = "1.10"
# JSON parsing (with SIMD acceleration)
simd-json = "0.14"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bincode = "1.3"
# TOML config parsing
toml = "0.8"
# File system traversal
walkdir = "2"
# Date/time handling
chrono = { version = "0.4", features = ["serde"] }
# Error handling
thiserror = "2"
anyhow = "1.0"
libc = "0.2"
# HTTP client (async)
reqwest = { version = "0.12", features = ["json", "native-tls-vendored"], default-features = false }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "sync", "fs"] }
# For disk caching (XDG paths)
dirs = "5"
# SQLite database support (bundled for cross-compilation)
rusqlite = { version = "0.32", features = ["bundled"] }
# Lazy static initialization
once_cell = "1"
# CLI framework
clap = { version = "4.5", features = ["derive", "cargo"] }
# TUI framework
ratatui = { version = "0.29", features = ["all-widgets"] }
crossterm = { version = "0.28", features = ["event-stream"] }
# Async utilities
tokio-stream = "0.1"
futures = "0.3"
# Table output for non-TUI mode
comfy-table = "7"
# Terminal colors
colored = "2"
# Progress indicators
indicatif = "0.17"
# Tracing/logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
sha2 = "0.10"
fs2 = "0.4"
# Clipboard
arboard = "3"
# Unix signal handling
signal-hook = "0.3"
[profile.release]
lto = true
opt-level = 3
codegen-units = 1
strip = true