-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
32 lines (29 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
[package]
name = "axum-otel-metrics"
version = "0.10.0"
edition = "2021"
license = "MIT"
description = "axum OpenTelemetry metrics middleware with prometheus exporter"
homepage = "https://ttys3.dev/"
repository = "https://github.com/ttys3/axum-otel-metrics/"
documentation = "https://docs.rs/axum-otel-metrics"
readme = "README.md"
exclude = [".github/*", "examples/*", "tests/*"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.8"
opentelemetry = { version = "0.28", features = ["metrics"] }
opentelemetry_sdk = "0.28"
opentelemetry-semantic-conventions = { version = "0.28", features = ["semconv_experimental"] }
tower = "0.5"
futures-util = "0.3"
pin-project-lite = "0.2"
http = "1.2"
http-body = "1.0"
[dev-dependencies]
opentelemetry-prometheus = { version = "0.28.0"}
opentelemetry_sdk = { version = "0.28.0", features = ["rt-tokio"] }
prometheus = "0.13.4"
tokio = { version = "1.43", features = ["macros"] }
axum-test = "17.2.0"
opentelemetry-otlp = { version = "0.28.0", features = ["tokio"] }