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

Bump axum-extra from 0.3.3 to 0.3.4

Bumps [axum-extra](https://github.com/tokio-rs/axum) from 0.3.3 to 0.3.4.
- [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.3.3...axum-extra-v0.3.4)

---
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]
2022-06-09 09:43:34 +00:00
committed by Quentin Gliech
parent 2eb3a43010
commit 482bfeecc2
3 changed files with 5 additions and 4 deletions

5
Cargo.lock generated
View File

@ -523,9 +523,9 @@ dependencies = [
[[package]]
name = "axum-extra"
version = "0.3.3"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75330529f6b27544cedc6089108602a056d016df6aa4f2cb24408d840392ef2d"
checksum = "4f4a22e494aab08f7fb9e9b462e49e4c1637dd9a4bfa4250e9addfdbafc1a022"
dependencies = [
"axum",
"bytes 1.1.0",
@ -533,6 +533,7 @@ dependencies = [
"http",
"mime",
"pin-project-lite",
"tokio",
"tower",
"tower-http",
"tower-layer",

View File

@ -8,7 +8,7 @@ license = "Apache-2.0"
[dependencies]
async-trait = "0.1.56"
axum = { version = "0.5.7", features = ["headers"] }
axum-extra = { version = "0.3.3", features = ["cookie-private"] }
axum-extra = { version = "0.3.4", features = ["cookie-private"] }
bincode = "1.3.3"
chrono = "0.4.19"
data-encoding = "2.3.2"

View File

@ -22,7 +22,7 @@ tower = "0.4.12"
tower-http = { version = "0.3.4", features = ["cors"] }
axum = "0.5.7"
axum-macros = "0.2.2"
axum-extra = { version = "0.3.3", features = ["cookie-private"] }
axum-extra = { version = "0.3.4", features = ["cookie-private"] }
# Emails
lettre = { version = "0.10.0-rc.7", default-features = false, features = ["builder"] }