-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (38 loc) · 798 Bytes
/
Cargo.toml
File metadata and controls
48 lines (38 loc) · 798 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
42
43
44
45
46
47
48
[package]
name = "diskcopilot"
version = "0.4.0"
edition = "2021"
description = "Fast, accurate Mac disk scanner and query tool"
[[bin]]
name = "diskcopilot-cli"
path = "src/main.rs"
[lib]
name = "diskcopilot"
path = "src/lib.rs"
[dependencies]
# CLI
clap = { version = "4", features = ["derive"] }
# Async
tokio = { version = "1", features = ["full"] }
# Scanning
jwalk = "0.8"
rayon = "1"
crossbeam-channel = "0.5"
# Cache
rusqlite = { version = "0.31", features = ["bundled"] }
# Serialization & config
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# Web server
axum = "0.8"
tower-http = { version = "0.6", features = ["cors"] }
# Utils
libc = "0.2"
dirs = "5"
indicatif = "0.17"
blake3 = "1"
trash = "5"
anyhow = "1"
[dev-dependencies]
tempfile = "3"