-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (38 loc) · 742 Bytes
/
Copy pathCargo.toml
File metadata and controls
39 lines (38 loc) · 742 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
[package]
edition = "2024"
name = "chunkr"
version = "0.1.0"
[dependencies]
anyhow = "1.0.100"
blake3 = "1.3.2"
chrono = "0.4.43"
clap = { features = [
"derive",
], version = "4.5.55" }
quick-xml = "0.39.0"
rayon = "1.7.0"
reqwest = { features = [
"json",
"rustls",
], version = "0.13.1" }
serde = { features = [
"derive",
], version = "1.0.228" }
serde_json = "1.0.149"
tokio = { features = [
"macros",
"rt-multi-thread",
], version = "1.49.0" }
toml = "0.9.11"
tracing = "0.1.44"
tracing-subscriber = { features = [
"env-filter",
], version = "0.3.22" }
unicode-normalization = "0.1.25"
uuid = { features = [
"v4",
], version = "1.20.0" }
walkdir = "2.5.0"
xxhash-rust = { features = [
"xxh3",
], version = "0.8.15" }