Skip to content

Commit

Permalink
Merge pull request #1 from Havunen/main
Browse files Browse the repository at this point in the history
Updated deps and added IntelliJ based IDE files to gitignore
  • Loading branch information
twitchax authored Feb 6, 2025
2 parents e21c726 + 3f67c88 commit d66bbd3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.idea
/target
/Cargo.lock
28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@ reqwest-client = ["dep:reqwest", "opentelemetry-application-insights/reqwest-cli

[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 = ["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" }
opentelemetry = { version = "0.27.1" }
opentelemetry_sdk = { version = "0.27.1", features = ["rt-tokio"] }
opentelemetry-application-insights = { version = "0.37.0", features = ["metrics", "live-metrics"] }
tracing-opentelemetry = { version = "0.28.0" }
tracing-subscriber = { version = "0.3" }
futures = { version = "0.3" }
http = { version = "1.2.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"], optional = true }
axum = { version = "0.8.1", features = ["macros"] }
hyper = { version = "1.5.2", features = ["full"] }
tower = { version = "0.5.2", features = ["full"] }
serde = { version = "1" }
serde_json = { version = "1" }
tokio = { version = "1", features = ["rt", "macros", "signal", "parking_lot"] }
reqwest = { version = "0.12.12", features = ["blocking"], optional = true }

0 comments on commit d66bbd3

Please sign in to comment.