-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (60 loc) · 1.86 KB
/
Copy pathCargo.toml
File metadata and controls
73 lines (60 loc) · 1.86 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
[workspace]
resolver = "2"
members = [
"crates/api",
"crates/indexer",
"crates/xdr-parser",
"crates/domain",
"crates/backfill-runner",
"crates/audit-harness",
"crates/enrichment-shared",
"crates/enrichment-worker",
"crates/backfill-enrichment-runner",
"crates/db-clickhouse",
"crates/load-tests",
]
[workspace.dependencies]
# Async runtime
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", features = ["serde"] }
# Web framework + Lambda
axum = "0.8"
lambda_http = "1"
lambda_runtime = "1"
tower-http = { version = "0.6", features = ["cors", "trace"] }
# OpenAPI
utoipa = { version = "5", features = ["axum_extras", "chrono"] }
utoipa-axum = "0.2"
utoipa-swagger-ui = { version = "9", features = ["axum", "vendored"] }
# Database
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "postgres", "json", "chrono", "migrate"] }
clickhouse = "=0.15.0"
# Stellar XDR
stellar-xdr = { version = "27" }
# Encoding
base64 = "0.22"
hex = "0.4"
sha2 = "0.10"
# Compression
zstd = "0.13"
# Observability
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# AWS SDK
aws-config = { version = "1", features = ["behavior-version-latest"] }
aws-sdk-cloudwatch = "1"
aws-sdk-s3 = "1"
aws-sdk-secretsmanager = "1"
aws-sdk-sqs = "1"
# Error handling
thiserror = "2"
# HTTP client (used by audit-harness for Horizon API + api crate for SEP-1
# stellar.toml fetches per task 0188). rustls-tls + json features only —
# no native-tls so the build stays small and reproducible across Lambda /
# CI / local without OpenSSL system deps.
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }
# TOML parsing (SEP-1 stellar.toml files per task 0188).
toml = "0.8"