You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-07-31 09:24:31 +03:00
Bump axum from 0.6.0-rc.4 to 0.6.0-rc.5
Bumps [axum](https://github.com/tokio-rs/axum) from 0.6.0-rc.4 to 0.6.0-rc.5. - [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.4...axum-v0.6.0-rc.5) --- 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
0ccbeedf24
commit
41a3d72ace
16
Cargo.lock
generated
16
Cargo.lock
generated
@ -610,9 +610,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "axum"
|
||||
version = "0.6.0-rc.4"
|
||||
version = "0.6.0-rc.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "11ce1fe515f70a98649f95d9434e8ad2ce8d581b5c9763a15470da5f6ef2e481"
|
||||
checksum = "21b6b56b1bdef08d4d50e63683d79c797dbf2ae467586c7502b283241b5e2b8a"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"axum-core 0.3.0-rc.3",
|
||||
@ -682,7 +682,7 @@ version = "0.4.0-rc.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "fa4236821ba5932aa38a08a45e4068ff2318c2882672c30ff26a433bc84b14e6"
|
||||
dependencies = [
|
||||
"axum 0.6.0-rc.4",
|
||||
"axum 0.6.0-rc.5",
|
||||
"bytes 1.2.1",
|
||||
"cookie",
|
||||
"futures-util",
|
||||
@ -2461,7 +2461,7 @@ name = "mas-axum-utils"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"axum 0.6.0-rc.4",
|
||||
"axum 0.6.0-rc.5",
|
||||
"axum-extra",
|
||||
"bincode",
|
||||
"chrono",
|
||||
@ -2499,7 +2499,7 @@ dependencies = [
|
||||
"anyhow",
|
||||
"argon2",
|
||||
"atty",
|
||||
"axum 0.6.0-rc.4",
|
||||
"axum 0.6.0-rc.5",
|
||||
"camino",
|
||||
"clap",
|
||||
"dotenv",
|
||||
@ -2632,7 +2632,7 @@ dependencies = [
|
||||
"anyhow",
|
||||
"argon2",
|
||||
"async-graphql",
|
||||
"axum 0.6.0-rc.4",
|
||||
"axum 0.6.0-rc.5",
|
||||
"axum-extra",
|
||||
"axum-macros",
|
||||
"camino",
|
||||
@ -2679,7 +2679,7 @@ dependencies = [
|
||||
"anyhow",
|
||||
"aws-smithy-http",
|
||||
"aws-types",
|
||||
"axum 0.6.0-rc.4",
|
||||
"axum 0.6.0-rc.5",
|
||||
"bytes 1.2.1",
|
||||
"futures-util",
|
||||
"headers",
|
||||
@ -2837,7 +2837,7 @@ dependencies = [
|
||||
name = "mas-router"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"axum 0.6.0-rc.4",
|
||||
"axum 0.6.0-rc.5",
|
||||
"serde",
|
||||
"serde_urlencoded",
|
||||
"serde_with",
|
||||
|
@ -7,7 +7,7 @@ license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.58"
|
||||
axum = { version = "0.6.0-rc.4", features = ["headers"] }
|
||||
axum = { version = "0.6.0-rc.5", features = ["headers"] }
|
||||
axum-extra = { version = "0.4.0-rc.2", 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-rc.4"
|
||||
axum = "0.6.0-rc.5"
|
||||
camino = "1.1.1"
|
||||
clap = { version = "4.0.26", 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-rc.4", features = ["ws"] }
|
||||
axum = { version = "0.6.0-rc.5", features = ["ws"] }
|
||||
axum-macros = "0.3.0-rc.2"
|
||||
axum-extra = { version = "0.4.0-rc.2", 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-rc.4", optional = true }
|
||||
axum = { version = "0.6.0-rc.5", optional = true }
|
||||
bytes = "1.2.1"
|
||||
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-rc.4", default-features = false }
|
||||
axum = { version = "0.6.0-rc.5", default-features = false }
|
||||
serde = { version = "1.0.147", features = ["derive"] }
|
||||
serde_urlencoded = "0.7.1"
|
||||
serde_with = "2.1.0"
|
||||
|
Reference in New Issue
Block a user