Skip to content

Commit

Permalink
Trim away unneeded features.
Browse files Browse the repository at this point in the history
  • Loading branch information
twitchax committed Feb 7, 2025
1 parent 13e0776 commit 0593b60
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ async-trait = { version = "0.1" }
tracing = { version = "0.1" }
opentelemetry = { version = "0.27" }
opentelemetry_sdk = { version = "0.27", features = ["rt-tokio"] }
opentelemetry-application-insights = { version = "0.37", features = ["metrics", "live-metrics"] }
opentelemetry-application-insights = { version = "0.37", features = ["live-metrics"] }
tracing-opentelemetry = { version = "0.28" }
tracing-subscriber = { version = "0.3" }
futures = { version = "0.3" }
futures = { version = "0.3", default-features = false, features = ["executor"] }
http = { version = "1.2" }
http-body-util = { version = "0.1" }
axum = { version = "0.8", default-features = false, features = ["matched-path", "macros"] }
hyper = { version = "1.6", features = ["full"] }
tower = { version = "0.5", features = ["full"] }
axum = { version = "0.8", default-features = false, features = ["json", "matched-path", "macros"] }
hyper = { version = "1.6", default-features = false }
tower = { version = "0.5", default-features = false }
serde = { version = "1" }
serde_json = { version = "1" }
reqwest = { version = "0.12", features = ["blocking"], optional = true }
Expand Down

0 comments on commit 0593b60

Please sign in to comment.