This repository was archived by the owner on Apr 19, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
90 lines (73 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
90 lines (73 loc) · 1.48 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
[workspace]
members = [
"crates/core",
"crates/storage",
"crates/output",
"crates/cli"
]
resolver = "2"
[workspace.lints.clippy]
correctness = "deny"
style = "warn"
complexity = "warn"
perf = "warn"
suspicious = "warn"
pedantic = "warn"
nursery = "warn"
cargo = "warn"
restriction = "allow"
[workspace.dependencies]
# CLI
clap = { version = "4.5", features = ["derive", "cargo", "env"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
# Database
rusqlite = { version = "0.32", features = ["bundled", "chrono"] }
# Pattern Matching
regex = "1.10"
lazy_static = "1.4"
# File System
walkdir = "2.5"
ignore = "0.4"
# Concurrency
rayon = "1.10"
num_cpus = "1.16"
tokio = { version = "1.0", features = ["fs", "rt-multi-thread", "time", "sync", "macros"] }
# Logging and Monitoring
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
sysinfo = "0.30"
# Error Handling
thiserror = "1.0"
anyhow = "1.0"
# Date/Time
chrono = { version = "0.4", features = ["serde"] }
# Terminal Output
colored = "2.1"
comfy-table = "7.1"
indicatif = "0.17"
# Configuration
config = "0.14"
# Git Integration (optional)
git2 = "0.19"
# Testing
proptest = "1.5"
tempfile = "3.10"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
opt-level = 3
debug = false
strip = true
[profile.dev]
opt-level = 1
codegen-units = 16
debug = true
incremental = true
[profile.bench]
lto = true
codegen-units = 1
opt-level = 3