Skip to content

Commit

Permalink
bump axum versions to 0.8.0 everywhere; bump other dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Ptrskay3 committed Jan 4, 2025
1 parent a7d151f commit a24bc84
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ categories = ["asynchronous", "network-programming", "web-programming", "develop
repository = "https://github.com/Ptrskay3/axum-prometheus"

[dependencies]
axum = "0.8.0-alpha.1"
http = "1.0.0"
axum = "0.8.0"
http = "1.2.0"
http-body = "1.0.0"
metrics = "0.24.0"
metrics = "0.24.1"
metrics-exporter-prometheus = { version = "0.16.0", optional = true, default-features = false }
pin-project = "1.0.12"
tower = "0.5.1"
tokio = { version = "1.20.1", features = ["rt-multi-thread", "macros"] }
tower-http = "0.6.1"
bytes = "1.2.1"
tokio = { version = "1.42.0", features = ["rt-multi-thread", "macros"] }
tower-http = "0.6.2"
bytes = "1.9.0"
futures-core = "0.3.24"
matchit = "0.8"

Expand All @@ -32,4 +32,4 @@ http-body-util = "0.1.0"
default = ["prometheus"]
prometheus = ["metrics-exporter-prometheus"]
push-gateway = ["metrics-exporter-prometheus/push-gateway"]

http-listener = ["metrics-exporter-prometheus/http-listener"]
2 changes: 1 addition & 1 deletion examples/base-metric-layer-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
publish = false

[dependencies]
axum = "0.8.0-alpha.1"
axum = "0.8.0"
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/builder-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
publish = false

[dependencies]
axum = "0.8.0-alpha.1"
axum = "0.8.0"
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/endpoint-type-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
publish = false

[dependencies]
axum = "0.8.0-alpha.1"
axum = "0.8.0"
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
publish = false

[dependencies]
axum = "0.8.0-alpha.1"
axum = "0.8.0"
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
Expand Down

0 comments on commit a24bc84

Please sign in to comment.