1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-31 09:24:31 +03:00

build(deps): bump axum-extra from 0.7.1 to 0.7.3

Bumps [axum-extra](https://github.com/tokio-rs/axum) from 0.7.1 to 0.7.3.
- [Release notes](https://github.com/tokio-rs/axum/releases)
- [Changelog](https://github.com/tokio-rs/axum/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tokio-rs/axum/compare/axum-extra-v0.7.1...axum-extra-v0.7.3)

---
updated-dependencies:
- dependency-name: axum-extra
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2023-04-14 10:41:47 +00:00
committed by Quentin Gliech
parent b4913a2fe1
commit 35e33624b0
3 changed files with 11 additions and 9 deletions

16
Cargo.lock generated
View File

@ -822,9 +822,9 @@ dependencies = [
[[package]]
name = "axum"
version = "0.6.11"
version = "0.6.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13d8068b6ccb8b34db9de397c7043f91db8b4c66414952c6db944f238c4d3db3"
checksum = "3b32c5ea3aabaf4deb5f5ced2d688ec0844c881c9e6c696a8b769a05fc691e62"
dependencies = [
"async-trait",
"axum-core",
@ -855,9 +855,9 @@ dependencies = [
[[package]]
name = "axum-core"
version = "0.3.3"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2f958c80c248b34b9a877a643811be8dbca03ca5ba827f2b63baf3a81e5fc4e"
checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
dependencies = [
"async-trait",
"bytes 1.4.0",
@ -872,11 +872,12 @@ dependencies = [
[[package]]
name = "axum-extra"
version = "0.7.2"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ea61f9f77592526b73fd14fe0f5938412bda49423f8b9f372ac76a9d6cf0ad2"
checksum = "fe82ff817f40f735cdfd7092f810d3de63bf875f50d1f0c17928e28cdab64437"
dependencies = [
"axum",
"axum-core",
"bytes 1.4.0",
"cookie",
"futures-util",
@ -884,6 +885,7 @@ dependencies = [
"http-body",
"mime",
"pin-project-lite",
"serde",
"tokio",
"tower",
"tower-http",
@ -5860,7 +5862,7 @@ checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
dependencies = [
"proc-macro2 1.0.52",
"quote 1.0.26",
"syn 2.0.4",
"syn 2.0.12",
]
[[package]]

View File

@ -8,7 +8,7 @@ license = "Apache-2.0"
[dependencies]
async-trait = "0.1.68"
axum = { version = "0.6.11", features = ["headers"] }
axum-extra = { version = "0.7.2", features = ["cookie-private"] }
axum-extra = { version = "0.7.3", features = ["cookie-private"] }
chrono = "0.4.24"
data-encoding = "2.3.3"
futures-util = "0.3.27"

View File

@ -24,7 +24,7 @@ tower = "0.4.13"
tower-http = { version = "0.4.0", features = ["cors"] }
axum = "0.6.11"
axum-macros = "0.3.6"
axum-extra = { version = "0.7.2", features = ["cookie-private"] }
axum-extra = { version = "0.7.3", features = ["cookie-private"] }
async-graphql = { version = "5.0.6", features = ["tracing", "apollo_tracing"] }