-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (38 loc) · 1.11 KB
/
Cargo.toml
File metadata and controls
51 lines (38 loc) · 1.11 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
[workspace]
members = ["crates/common", "crates/downloader", "crates/etl", "crates/api"]
resolver = "2"
[workspace.dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
# Database
sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "chrono", "uuid", "migrate"] }
# HTTP
axum = { version = "0.7", features = ["macros"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "trace"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "rustls-tls"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# CSV + ZIP
csv = "1"
zip = "2"
# Logging / tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
# Error handling
anyhow = "1"
thiserror = "2"
# Config / env
dotenvy = "0.15"
# CLI
clap = { version = "4", features = ["derive", "env"] }
# Time
chrono = { version = "0.4", features = ["serde"] }
# Hashing (SHA-256 for file checksums)
sha2 = "0.10"
hex = "0.4"
# Bytes
bytes = "1"
# Internal crates
esiid-common = { path = "crates/common" }