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
49 lines (45 loc) · 1.41 KB
/
Copy pathCargo.toml
File metadata and controls
49 lines (45 loc) · 1.41 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
[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"
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite", "chrono"] }
async-trait = "0.1"
thiserror = "2"
tokio-util = { version = "0.7", features = ["rt"] }
tower-http = { version = "0.6", features = ["fs"] }
rhai = { version = "1", features = ["sync", "metadata"] }
[dev-dependencies]
tower = { version = "0.4", features = ["util"] }
[features]
default = []
postgres = ["sqlx/postgres"]