1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-08-06 06:02:40 +03:00

Bump tower-http from 0.3.1 to 0.3.2

Bumps [tower-http](https://github.com/tower-rs/tower-http) from 0.3.1 to 0.3.2.
- [Release notes](https://github.com/tower-rs/tower-http/releases)
- [Commits](https://github.com/tower-rs/tower-http/compare/tower-http-0.3.1...tower-http-0.3.2)

---
updated-dependencies:
- dependency-name: tower-http
  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-04-29 19:32:10 +00:00
committed by Quentin Gliech
parent 3a81dcfe78
commit ece2630246
4 changed files with 5 additions and 5 deletions

4
Cargo.lock generated
View File

@@ -4203,9 +4203,9 @@ dependencies = [
[[package]] [[package]]
name = "tower-http" name = "tower-http"
version = "0.3.1" version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7755f984aa46a9d50829dc84b6a674b2f3b8b4de47c0708923953b090d48acc" checksum = "e980386f06883cf4d0578d6c9178c81f68b45d77d00f2c2c1bc034b3439c2c56"
dependencies = [ dependencies = [
"async-compression", "async-compression",
"bitflags", "bitflags",

View File

@@ -19,7 +19,7 @@ anyhow = "1.0.57"
# Web server # Web server
hyper = { version = "0.14.18", features = ["full"] } hyper = { version = "0.14.18", features = ["full"] }
tower = "0.4.12" tower = "0.4.12"
tower-http = { version = "0.3.1", features = ["cors"] } tower-http = { version = "0.3.2", features = ["cors"] }
axum = "0.5.4" axum = "0.5.4"
axum-macros = "0.2.0" axum-macros = "0.2.0"
axum-extra = { version = "0.3.0", features = ["cookie-private"] } axum-extra = { version = "0.3.0", features = ["cookie-private"] }

View File

@@ -24,6 +24,6 @@ serde_json = "1.0.79"
thiserror = "1.0.30" thiserror = "1.0.30"
tokio = { version = "1.18.0", features = ["sync", "parking_lot"] } tokio = { version = "1.18.0", features = ["sync", "parking_lot"] }
tower = { version = "0.4.12", features = ["timeout", "limit"] } tower = { version = "0.4.12", features = ["timeout", "limit"] }
tower-http = { version = "0.3.1", features = ["follow-redirect", "decompression-full", "set-header", "compression-full", "cors"] } tower-http = { version = "0.3.2", features = ["follow-redirect", "decompression-full", "set-header", "compression-full", "cors"] }
tracing = "0.1.34" tracing = "0.1.34"
tracing-opentelemetry = "0.17.2" tracing-opentelemetry = "0.17.2"

View File

@@ -16,5 +16,5 @@ http-body = "0.4.4"
mime_guess = "2.0.4" mime_guess = "2.0.4"
rust-embed = "6.4.0" rust-embed = "6.4.0"
tower = "0.4.12" tower = "0.4.12"
tower-http = { version = "0.3.1", features = ["fs"] } tower-http = { version = "0.3.2", features = ["fs"] }
tracing = "0.1.34" tracing = "0.1.34"