1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-29 22:01:14 +03:00

Bump axum from 0.6.0-rc.1 to 0.6.0-rc.2

Bumps [axum](https://github.com/tokio-rs/axum) from 0.6.0-rc.1 to 0.6.0-rc.2.
- [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-v0.6.0-rc.1...axum-v0.6.0-rc.2)

---
updated-dependencies:
- dependency-name: axum
  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-09-12 21:10:36 +00:00
committed by Quentin Gliech
parent d55017ed66
commit 3c3f9aa920
6 changed files with 11 additions and 9 deletions

10
Cargo.lock generated
View File

@ -516,9 +516,9 @@ dependencies = [
[[package]] [[package]]
name = "axum" name = "axum"
version = "0.6.0-rc.1" version = "0.6.0-rc.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d49958d54e0bab71947eb00a33175eb9164ccc0ea4c262d2139c5f8899a3616e" checksum = "d2628a243073c55aef15a1c1fe45c87f21b84f9e89ca9e7b262a180d3d03543d"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"axum-core", "axum-core",
@ -548,9 +548,9 @@ dependencies = [
[[package]] [[package]]
name = "axum-core" name = "axum-core"
version = "0.3.0-rc.1" version = "0.3.0-rc.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e52ebadfce2f1e7fec9b2dd920952477ffeac9f07a5c492c0cbba2bb22cd294" checksum = "473bd0762170028bb6b5068be9e97de2a9f0af3bf2084498d840498f47194d3d"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"bytes 1.2.1", "bytes 1.2.1",
@ -558,6 +558,8 @@ dependencies = [
"http", "http",
"http-body", "http-body",
"mime", "mime",
"tower-layer",
"tower-service",
] ]
[[package]] [[package]]

View File

@ -7,7 +7,7 @@ license = "Apache-2.0"
[dependencies] [dependencies]
async-trait = "0.1.57" async-trait = "0.1.57"
axum = { version = "0.6.0-rc.1", features = ["headers"] } axum = { version = "0.6.0-rc.2", features = ["headers"] }
axum-extra = { version = "0.4.0-rc.1", features = ["cookie-private"] } axum-extra = { version = "0.4.0-rc.1", features = ["cookie-private"] }
bincode = "1.3.3" bincode = "1.3.3"
chrono = "0.4.22" chrono = "0.4.22"

View File

@ -20,7 +20,7 @@ anyhow = "1.0.64"
hyper = { version = "0.14.20", features = ["full"] } hyper = { version = "0.14.20", features = ["full"] }
tower = "0.4.13" tower = "0.4.13"
tower-http = { version = "0.3.4", features = ["cors"] } tower-http = { version = "0.3.4", features = ["cors"] }
axum = "0.6.0-rc.1" axum = "0.6.0-rc.2"
axum-macros = "0.2.3" axum-macros = "0.2.3"
axum-extra = { version = "0.4.0-rc.1", features = ["cookie-private"] } axum-extra = { version = "0.4.0-rc.1", features = ["cookie-private"] }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
[dependencies] [dependencies]
axum = { version = "0.6.0-rc.1", optional = true } axum = { version = "0.6.0-rc.2", optional = true }
bytes = "1.2.1" bytes = "1.2.1"
futures-util = "0.3.24" futures-util = "0.3.24"
headers = "0.3.8" headers = "0.3.8"

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
[dependencies] [dependencies]
axum = { version = "0.6.0-rc.1", default-features = false } axum = { version = "0.6.0-rc.2", default-features = false }
serde = { version = "1.0.144", features = ["derive"] } serde = { version = "1.0.144", features = ["derive"] }
serde_urlencoded = "0.7.1" serde_urlencoded = "0.7.1"
serde_with = "2.0.1" serde_with = "2.0.1"

View File

@ -9,7 +9,7 @@ license = "Apache-2.0"
dev = [] dev = []
[dependencies] [dependencies]
axum = { version = "0.6.0-rc.1", features = ["headers"] } axum = { version = "0.6.0-rc.2", features = ["headers"] }
headers = "0.3.7" headers = "0.3.7"
http = "0.2.8" http = "0.2.8"
http-body = "0.4.5" http-body = "0.4.5"