-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (39 loc) · 1.14 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
41
[package]
name = "hub"
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.7"
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
reqwest = { version = "0.12", features = ["json", "stream"] }
serde_json = "1.0"
axum-extra = "0.9.4"
tracing = "0.1"
tracing-subscriber = "0.3"
serde_yaml = "0.9"
tower = { version = "0.5.1", features = ["full"] }
anyhow = "1.0.92"
tower-http = { version = "0.6.1", features = ["full"] }
uuid = "1.11.0"
chrono = "0.4.38"
opentelemetry = { version = "0.27", default-features = false, features = [
"trace",
] }
opentelemetry_sdk = { version = "0.27", default-features = false, features = [
"trace",
"rt-tokio",
] }
opentelemetry-semantic-conventions = { version = "0.27.0", features = [
"semconv_experimental",
] }
opentelemetry-otlp = { version = "0.27.0", features = [
"http-proto",
"reqwest-client",
"reqwest-rustls",
] }
axum-prometheus = "0.7.0"
reqwest-streams = { version = "0.8.1", features = ["json"] }
futures = "0.3.31"
async-stream = "0.3.6"