-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (36 loc) · 1.05 KB
/
Cargo.toml
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
[package]
name = "shva"
version = "0.1.0"
edition = "2021"
authors = ["Eldad Zack <[email protected]>"]
[dependencies]
# Infra
serde = { version = "1.0", features = ["derive"] }
toml = "0.8.0"
anyhow = "1.0.53"
tracing = { version = "0.1.30", features = ["attributes"] }
tracing-subscriber = { version = "0.3.8", features = ["env-filter"] }
opentelemetry = "0.20.0"
opentelemetry-jaeger = "0.19.0"
tracing-opentelemetry = "0.21.0"
# Tokio to Axum and all that's in between.
tokio = { version = "1", features = ["full"] }
axum = "0.6.1"
tower = { version = "0.4.11", features = ["limit", "load-shed", "timeout"] }
tower-http = { version = "0.4.0", features = ["trace", "compression-full", "validate-request"] }
hyper = "0.14.17"
# Database
tokio-postgres = "0.7.5"
bb8 = "0.8.0"
bb8-postgres = "0.8.1"
## Functionality
rand = "0.8.5"
metrics = "0.21.0"
metrics-exporter-prometheus = "0.12.0"
utoipa = "4.1.0"
refinery = { version = "0.8.4", features = ["tokio-postgres"] }
ciborium = "0.2.0"
async-trait = "0.1.53"
mime = "0.3.16"
thiserror = "1.0.31"
http = "0.2.8"