forked from prodzilla/prodzilla
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (34 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
36 lines (34 loc) · 1.02 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
[workspace]
[package]
name = "prodzilla"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = { version = "0.7.2" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.68"
serde_yaml = "0.9"
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
reqwest = { version = "0.11" }
lazy_static = "1.4.0"
futures = "0.3.29"
wiremock = "0.5.22"
chrono = { version = "0.4.31", features = ["serde"] }
regex = "1.10.3"
uuid = { version = "1", features = ["v4"] }
opentelemetry = "0.23.0"
opentelemetry-http = "0.12.0"
opentelemetry_sdk = { version = "0.23.0", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.16.0", features = [
"metrics",
"http-json",
"http-proto",
"reqwest-client",
] }
opentelemetry-semantic-conventions = "0.15.0"
clap = { version = "4.5.4", features = ["derive"] }
opentelemetry-stdout = { version = "0.4.0", features = ["metrics", "trace"] }
opentelemetry-prometheus = "0.16.0"
prometheus = "0.13.4"