Update Rust crate axum-extra to 0.3.7 - autoclosed #11

Closed
kjuulh wants to merge 1 commits from renovate/axum-extra-0.x into main
2 changed files with 9 additions and 7 deletions
Showing only changes of commit b378cdff83 - Show all commits

14
Cargo.lock generated
View File

@ -216,9 +216,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]] [[package]]
name = "axum" name = "axum"
version = "0.5.13" version = "0.5.17"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b9496f0c1d1afb7a2af4338bbe1d969cddfead41d87a9fb3aaa6d0bbc7af648" checksum = "acee9fd5073ab6b045a275b3e709c163dd36c90685219cb21804a147b58dba43"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"axum-core", "axum-core",
@ -251,9 +251,9 @@ dependencies = [
[[package]] [[package]]
name = "axum-core" name = "axum-core"
version = "0.2.7" version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4f44a0e6200e9d11a1cdc989e4b358f6e3d354fbf48478f345a17f4e43f8635" checksum = "37e5939e02c56fecd5c017c37df4238c0a839fa76b7f97acdd7efb804fd181cc"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"bytes", "bytes",
@ -261,13 +261,15 @@ dependencies = [
"http", "http",
"http-body", "http-body",
"mime", "mime",
"tower-layer",
"tower-service",
] ]
[[package]] [[package]]
name = "axum-extra" name = "axum-extra"
version = "0.3.6" version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "277c75e6c814b061ae4947d02335d9659db9771b9950cca670002ae986372f44" checksum = "69034b3b0fd97923eee2ce8a47540edb21e07f48f87f67d44bb4271cec622bdb"
dependencies = [ dependencies = [
"axum", "axum",
"bytes", "bytes",

View File

@ -7,7 +7,7 @@ edition = "2021"
[dependencies] [dependencies]
axum = { version = "0.5.6" } axum = { version = "0.5.6" }
axum-extra = { version = "0.3.6", features = ["spa"] } axum-extra = { version = "0.3.7", features = ["spa"] }
futures = "0.3.21" futures = "0.3.21"
tower-http = { version = "0.3.3", features = ["cors", "trace"] } tower-http = { version = "0.3.3", features = ["cors", "trace"] }
async-graphql = { version = "4.0.0", features = [ async-graphql = { version = "4.0.0", features = [