-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
116 lines (95 loc) · 2.64 KB
/
Cargo.toml
File metadata and controls
116 lines (95 loc) · 2.64 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[package]
name = "claudev"
version = "0.5.1"
edition = "2021"
description = "Analyze AI coding assistant usage patterns, costs, and productivity"
license = "MIT"
repository = "https://github.com/openSVM/vibedev"
homepage = "https://github.com/openSVM/vibedev"
documentation = "https://github.com/openSVM/vibedev#readme"
readme = "README.md"
keywords = ["ai", "coding", "analytics", "claude", "cursor"]
categories = ["command-line-utilities", "development-tools"]
authors = ["Rin Fhenzig <rin@opensvm.com>"]
rust-version = "1.82"
[dependencies]
# Core
clap = { version = "4.5", features = ["derive", "cargo"] }
anyhow = "1.0"
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Async
tokio = { version = "1.40", features = ["full"] }
rayon = "1.10"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
base64 = "0.22"
# File handling
walkdir = "2.5"
glob = "0.3"
ignore = "0.4"
# Parsing
regex = "1.10"
chrono = { version = "0.4", features = ["serde"] }
lazy_static = "1.5"
dirs = "5.0"
# Search indexing
tantivy = "0.22"
unicode-normalization = "0.1"
# Git integration (removed - was unused)
# Performance
fxhash = "0.2"
bincode = "1.3"
md-5 = "0.10"
# Statistics
statistical = "1.0"
# Output
comfy-table = "7.1"
indicatif = "0.17"
colored = "2.1"
# TUI (like dust)
ratatui = "0.29"
crossterm = "0.28"
# LLM integration (Ollama, OpenAI, Anthropic)
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
futures = "0.3"
# Embedded LLM with optional GPU + Quantization support
candle-core = "0.8"
candle-nn = "0.8"
candle-transformers = "0.8"
tokenizers = "0.20"
hf-hub = { version = "0.4", default-features = false, features = ["rustls-tls", "tokio", "ureq"] }
# Compression & Archiving
flate2 = "1.0"
tar = "0.4"
zip = "0.6"
# SQLite for Cursor database parsing (bundled = includes SQLite statically)
rusqlite = { version = "0.32", features = ["bundled"] }
# MITM Proxy for traffic monitoring
rcgen = "0.12"
hyper = { version = "1.0", features = ["server", "client", "http1"] }
hyper-util = { version = "0.1", features = ["tokio", "server-auto", "client-legacy"] }
http-body-util = "0.1"
tokio-rustls = "0.25"
rustls-pemfile = "2.0"
# Visualization
plotters = "0.3"
image = "0.25"
imageproc = "0.25"
rusttype = "0.9"
open = "5.0"
[features]
default = []
cuda = ["candle-core/cuda", "candle-nn/cuda", "candle-transformers/cuda"]
metal = ["candle-core/metal", "candle-nn/metal", "candle-transformers/metal"]
[dev-dependencies]
tempfile = "3.12"
criterion = "0.5"
[[bin]]
name = "claudev"
path = "src/main.rs"
[[bin]]
name = "unbundle"
path = "src/unbundler_cli.rs"