-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
96 lines (80 loc) · 2.31 KB
/
Cargo.toml
File metadata and controls
96 lines (80 loc) · 2.31 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
92
93
94
95
96
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
version = "0.22.0"
edition = "2021"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
authors = ["Florian Bruniaux"]
repository = "https://github.com/FlorianBruniaux/ccboard"
homepage = "https://github.com/FlorianBruniaux/ccboard"
documentation = "https://docs.rs/ccboard"
keywords = ["claude", "dashboard", "tui", "monitoring", "cli"]
categories = ["command-line-utilities", "development-tools"]
readme = "README.md"
[workspace.dependencies]
# Core - Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
# Core - Time
chrono = { version = "0.4", features = ["serde"] }
# Core - Error handling
anyhow = "1"
thiserror = "2"
# Core - Async
tokio = { version = "1", features = ["sync", "fs", "rt-multi-thread", "io-util", "macros", "time"] }
# Core - File watching
notify = "7"
notify-debouncer-mini = "0.5"
# Core - File system
walkdir = "2"
dirs = "6"
# Core - Regex
regex = "1"
# Core - Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Core - Concurrency (AMENDED: parking_lot + dashmap)
parking_lot = "0.12"
dashmap = "6"
# Core - Caching
moka = { version = "0.12", features = ["future"] }
once_cell = "1"
# TUI
ratatui = "0.30"
crossterm = "0.28"
# Web - Leptos (AMENDED: htmx -> Leptos)
leptos = { version = "0.7", default-features = false }
leptos_axum = "0.7"
leptos_router = { version = "0.7", default-features = false }
axum = "0.8"
tower-http = { version = "0.6", features = ["cors", "fs"] }
tokio-stream = { version = "0.1", features = ["sync"] }
gloo-net = "0.6"
js-sys = "0.3"
web-sys = { version = "0.3", features = [
"Window",
"Navigator",
"Clipboard",
"Blob",
"BlobPropertyBag",
"Url",
"HtmlAnchorElement",
"Document",
] }
# CLI
clap = { version = "4", features = ["derive", "env"] }
open = "5"
arboard = "3"
comfy-table = "7"
# Internal crates
ccboard-core = { version = "0.22.0", path = "crates/ccboard-core" }
ccboard-tui = { version = "0.22.0", path = "crates/ccboard-tui" }
ccboard-web = { version = "0.22.0", path = "crates/ccboard-web" }
[profile.release]
opt-level = "z" # Optimize for size (critical for WASM bundle)
lto = "fat" # Full link-time optimization
codegen-units = 1 # Better optimization, slower compile
strip = true # Strip symbols