[package] name = "axum-insights" version = "0.4.0" edition = "2021" authors = ["Aaron Roney "] 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"] }