You've already forked authentication-service
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 to 0.6.1
Bumps [axum](https://github.com/tokio-rs/axum) from 0.6.0 to 0.6.1. - [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...axum-v0.6.1) --- 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:
committed by
Quentin Gliech
parent
a9cbb41a97
commit
f6fee1aaf8
22
Cargo.lock
generated
22
Cargo.lock
generated
@ -631,9 +631,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "axum"
|
||||
version = "0.6.0"
|
||||
version = "0.6.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "744864363a200a5e724a7e61bc8c11b6628cf2e3ec519c8a1a48e609a8156b40"
|
||||
checksum = "08b108ad2665fa3f6e6a517c3d80ec3e77d224c47d605167aefaa5d7ef97fa48"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"axum-core 0.3.0",
|
||||
@ -646,7 +646,7 @@ dependencies = [
|
||||
"http-body",
|
||||
"hyper",
|
||||
"itoa 1.0.4",
|
||||
"matchit 0.6.0",
|
||||
"matchit 0.7.0",
|
||||
"memchr",
|
||||
"mime",
|
||||
"percent-encoding",
|
||||
@ -705,7 +705,7 @@ version = "0.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d1933e5206aa0a213ae64bbd53b3006f4dc171f02314fb5efaf4d2212d2705b8"
|
||||
dependencies = [
|
||||
"axum 0.6.0",
|
||||
"axum 0.6.1",
|
||||
"bytes 1.3.0",
|
||||
"cookie",
|
||||
"futures-util",
|
||||
@ -2636,7 +2636,7 @@ name = "mas-axum-utils"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"axum 0.6.0",
|
||||
"axum 0.6.1",
|
||||
"axum-extra",
|
||||
"bincode",
|
||||
"chrono",
|
||||
@ -2674,7 +2674,7 @@ dependencies = [
|
||||
"anyhow",
|
||||
"argon2",
|
||||
"atty",
|
||||
"axum 0.6.0",
|
||||
"axum 0.6.1",
|
||||
"camino",
|
||||
"clap",
|
||||
"dotenv",
|
||||
@ -2807,7 +2807,7 @@ dependencies = [
|
||||
"anyhow",
|
||||
"argon2",
|
||||
"async-graphql",
|
||||
"axum 0.6.0",
|
||||
"axum 0.6.1",
|
||||
"axum-extra",
|
||||
"axum-macros",
|
||||
"camino",
|
||||
@ -2854,7 +2854,7 @@ dependencies = [
|
||||
"anyhow",
|
||||
"aws-smithy-http",
|
||||
"aws-types",
|
||||
"axum 0.6.0",
|
||||
"axum 0.6.1",
|
||||
"bytes 1.3.0",
|
||||
"futures-util",
|
||||
"headers",
|
||||
@ -3053,7 +3053,7 @@ dependencies = [
|
||||
name = "mas-router"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"axum 0.6.0",
|
||||
"axum 0.6.1",
|
||||
"serde",
|
||||
"serde_urlencoded",
|
||||
"serde_with",
|
||||
@ -3164,9 +3164,9 @@ checksum = "73cbba799671b762df5a175adf59ce145165747bb891505c43d09aefbbf38beb"
|
||||
|
||||
[[package]]
|
||||
name = "matchit"
|
||||
version = "0.6.0"
|
||||
version = "0.7.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3dfc802da7b1cf80aefffa0c7b2f77247c8b32206cc83c270b61264f5b360a80"
|
||||
checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40"
|
||||
|
||||
[[package]]
|
||||
name = "md-5"
|
||||
|
@ -7,7 +7,7 @@ license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.59"
|
||||
axum = { version = "0.6.0", features = ["headers"] }
|
||||
axum = { version = "0.6.1", features = ["headers"] }
|
||||
axum-extra = { version = "0.4.0", features = ["cookie-private"] }
|
||||
bincode = "1.3.3"
|
||||
chrono = "0.4.23"
|
||||
|
@ -9,7 +9,7 @@ license = "Apache-2.0"
|
||||
anyhow = "1.0.66"
|
||||
argon2 = { version = "0.4.1", features = ["password-hash"] }
|
||||
atty = "0.2.14"
|
||||
axum = "0.6.0"
|
||||
axum = "0.6.1"
|
||||
camino = "1.1.1"
|
||||
clap = { version = "4.0.29", features = ["derive"] }
|
||||
dotenv = "0.15.0"
|
||||
|
@ -21,7 +21,7 @@ anyhow = "1.0.66"
|
||||
hyper = { version = "0.14.23", features = ["full"] }
|
||||
tower = "0.4.13"
|
||||
tower-http = { version = "0.3.4", features = ["cors"] }
|
||||
axum = { version = "0.6.0", features = ["ws"] }
|
||||
axum = { version = "0.6.1", features = ["ws"] }
|
||||
axum-macros = "0.3.0"
|
||||
axum-extra = { version = "0.4.0", features = ["cookie-private"] }
|
||||
|
||||
|
@ -8,7 +8,7 @@ license = "Apache-2.0"
|
||||
[dependencies]
|
||||
aws-smithy-http = { version = "0.51.0", optional = true }
|
||||
aws-types = { version = "0.51.0", optional = true }
|
||||
axum = { version = "0.6.0", optional = true }
|
||||
axum = { version = "0.6.1", optional = true }
|
||||
bytes = "1.3.0"
|
||||
futures-util = "0.3.25"
|
||||
headers = "0.3.8"
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
axum = { version = "0.6.0", default-features = false }
|
||||
axum = { version = "0.6.1", default-features = false }
|
||||
serde = { version = "1.0.148", features = ["derive"] }
|
||||
serde_urlencoded = "0.7.1"
|
||||
serde_with = "2.1.0"
|
||||
|
Reference in New Issue
Block a user