-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 1.17 KB
/
Copy pathCargo.toml
File metadata and controls
39 lines (35 loc) · 1.17 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
[package]
name = "oxidize"
version = "0.1.0"
edition = "2024"
[[bin]]
path = "src/main.rs"
name = "oxidize"
[dependencies]
anyhow = "1.0.82"
axum = "0.8.7"
axum-macros = "0.5.0"
chrono = { version = "0.4.31", features = ["clock", "serde"], default-features = false }
dotenvy = "0.15.7"
opentelemetry = "0.31.0"
opentelemetry-http = "0.31.0"
opentelemetry-otlp = { version = "0.31.0", features = ["http", "zstd-http"] }
opentelemetry-semantic-conventions = "0.31.0"
opentelemetry_sdk = "0.31.0"
serde = "1.0.195"
serde_json = "1.0.111"
sqlx = { version = "0.8.6", features = ["runtime-tokio-rustls", "postgres", "uuid", "chrono"] }
thiserror = "1.0.63"
tokio = { version = "1.48.0", features = ["full"] }
tower = "0.5.2"
tower-http = { version = "0.6.6", features = ["timeout", "trace", "compression-full"] }
tracing = "0.1.41"
tracing-opentelemetry = "0.32.0"
tracing-subscriber = { version = "0.3.20", features = ["json", "env-filter", "std", "registry", "fmt"] }
uuid = { version = "1.6.1", features = ["serde", "v4"], default-features = false }
[dev-dependencies]
http-body-util = "0.1.1"
reqwest = { version = "0.12.24", features = ["json"] }
[[test]]
name = "integration_tests"
test = false