-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
30 lines (29 loc) · 1.25 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
[package]
name = "axum-insights"
version = "0.4.0"
edition = "2021"
authors = ["Aaron Roney <twitchax@gmail.com>"]
license = "MIT"
description = "An Azure Application Insights exporter for axum via tracing."
readme = "README.md"
homepage = "https://github.com/twitchax/axum-insights"
repository = "https://github.com/twitchax/axum-insights"
keywords = ["axum", "application", "insights", "appinsights", "tracing"]
categories = ["web-programming"]
[dependencies]
tracing = { version = "0.1.40" }
opentelemetry = { version = "0.24.0" }
opentelemetry_sdk = { version = "0.24.1", features = ["rt-tokio"] }
opentelemetry-application-insights = { version = "0.34.0", features = ["reqwest-client", "metrics", "live-metrics"] }
tracing-opentelemetry = { version = "0.25.0" }
tracing-subscriber = { version = "0.3.17" }
futures = { version = "0.3.28" }
http = { version = "1.1.0" }
http-body-util = { version = "0.1.2" }
axum = { version = "0.7.5", features = ["macros"] }
hyper = { version = "1.4.1", features = ["full"] }
tower = { version = "0.4.13", features = ["full"] }
serde = { version = "1.0.126" }
serde_json = { version = "1.0.64" }
tokio = { version = "1.29.1", features = ["rt", "macros", "signal", "parking_lot"] }
reqwest = { version = "0.12.5", features = ["blocking"] }