From c8acbd334f925e1fbb10d001cba6c6a94fd58641 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Sep 2024 20:36:27 +0200 Subject: [PATCH] Bump tower-http from 0.5.2 to 0.6.1 (#264) Bumps [tower-http](https://github.com/tower-rs/tower-http) from 0.5.2 to 0.6.1. - [Release notes](https://github.com/tower-rs/tower-http/releases) - [Commits](https://github.com/tower-rs/tower-http/compare/tower-http-0.5.2...tower-http-0.6.1) --- updated-dependencies: - dependency-name: tower-http dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 18 ++++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e4c7424..9724f83 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -804,7 +804,7 @@ dependencies = [ "snafu", "tokio", "tower 0.4.13", - "tower-http", + "tower-http 0.5.2", "tracing", "url", ] @@ -909,7 +909,7 @@ dependencies = [ "serde", "serde_json", "tokio", - "tower-http", + "tower-http 0.6.1", "url", "wait-timeout", ] @@ -1612,6 +1612,20 @@ dependencies = [ "tracing", ] +[[package]] +name = "tower-http" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8437150ab6bbc8c5f0f519e3d5ed4aa883a83dd4cdd3d1b21f9482936046cb97" +dependencies = [ + "bitflags", + "bytes", + "http", + "pin-project-lite", + "tower-layer", + "tower-service", +] + [[package]] name = "tower-layer" version = "0.3.3" diff --git a/Cargo.toml b/Cargo.toml index 72d4cb1..842f563 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ serde_json = "1.0" tokio = { version = "1.40", features = ["full"] } wait-timeout = "0.2" url = { version = "2.5", "features" = ["serde"] } -tower-http = { version = "0.5", features = ["cors"] } +tower-http = { version = "0.6", features = ["cors"] } [dev-dependencies] anyhow = "1.0"