-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (43 loc) · 1.49 KB
/
Cargo.toml
File metadata and controls
45 lines (43 loc) · 1.49 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
[workspace]
members = [
"egress",
"ingestion",
"integration_tests",
"util",
]
resolver = "2"
[workspace.package]
edition = "2024"
[workspace.dependencies]
async-trait = "0.1.89"
axum = "0.8.8"
bb8 = "0.9.1"
bb8-postgres = "0.9.0"
bytes = "1.11.1"
chrono = { version = "0.4.44", features = ["serde"] }
chronoutil = "0.2.7"
csv = "1.4.0"
futures = "0.3.32"
http = "1.4.0"
itertools = "0.14.0"
jsonwebtoken = { version = "10.3.0", features = ["rust_crypto"] }
metrics = "0.24.3"
# feature tampering here is to get rid of rustls for better build times
metrics-exporter-prometheus = { version = "0.18.1", default-features = false, features= ["http-listener"] }
postgres-types = { version = "0.2.12", features = ["derive", "with-chrono-0_4"] }
quick-xml = { version = "0.39.2", features = [ "serialize", "overlapped-lists" ] }
rdkafka = "0.39.0"
regex = "1.12.3"
# feature tampering here is to get rid of rustls for better build times
reqwest = { version = "0.13.2", default-features = false, features = ["json", "native-tls", "charset", "http2", "system-proxy"] }
rust-s3 = "0.37.1"
serde = { version = "1.0.228", features = ["derive"] }
tempfile = "3.26.0"
thiserror = "2.0.18"
tokio = { version = "1.49.0", features = ["rt-multi-thread", "macros", "signal"] }
tokio-postgres = { version = "0.7.16", features = ["with-chrono-0_4"] }
tokio-util = { version = "0.7.18", features = ["rt"] }
toml = "0.9.11"
tower-http = { version = "0.6.8", features = ["compression-full"] }
tracing = "0.1.44"
tracing-subscriber = "0.3.22"