-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (34 loc) · 755 Bytes
/
Cargo.toml
File metadata and controls
41 lines (34 loc) · 755 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
31
32
33
34
35
36
37
38
39
40
41
[workspace]
members = [
"crates/cli-core",
"crates/code-cost",
"crates/work-summary",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["CHANN"]
license = "MIT"
repository = "https://github.com/channprj/cli-tools"
[workspace.dependencies]
# CLI
clap = { version = "4.5", features = ["derive", "cargo", "color"] }
owo-colors = "4.0"
comfy-table = "7.1"
indicatif = "0.17"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
csv = "1.3"
# Git & Code Analysis
git2 = "0.19"
ignore = "0.4"
walkdir = "2.5"
# Error Handling
anyhow = "1.0"
thiserror = "1.0"
# Async
tokio = { version = "1.40", features = ["full"] }
# Utils
chrono = { version = "0.4", features = ["serde"] }