Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 44 additions & 30 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ version = "1.0.89"

# HTTP router
[workspace.dependencies.axum]
version = "0.7.5"
version = "0.7.7"

# Extra utilities for Axum
[workspace.dependencies.axum-extra]
version = "0.9.3"
version = "0.9.4"
features = ["cookie-private", "cookie-key-expansion", "typed-header"]

# Bytes
Expand Down Expand Up @@ -261,12 +261,12 @@ features = ["full"]

# Tower services
[workspace.dependencies.tower]
version = "0.4.13"
version = "0.5.1"
features = ["util"]

# Tower HTTP layers
[workspace.dependencies.tower-http]
version = "0.5.2"
version = "0.6.1"
features = ["cors", "fs", "add-extension"]

# Logging and tracing
Expand Down
2 changes: 1 addition & 1 deletion crates/handlers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ hyper.workspace = true
tower.workspace = true
tower-http.workspace = true
axum.workspace = true
axum-macros = "0.4.1"
axum-macros = "0.4.2"
axum-extra.workspace = true
rustls.workspace = true

Expand Down
2 changes: 2 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ skip = [
{ name = "strum_macros", version = "0.25.0" },
# For some reason, axum-core depends on this old version, even though axum is on the new one
{ name = "sync_wrapper", version = "0.1.2" },
# `apalis` depends on this old version of tower
{ name = "tower", version = "0.4.13" },
]

skip-tree = []
Expand Down
Loading