From b692e0cee0e71391e9413a73268c6ec2db76d4cf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 Apr 2022 08:11:57 +0100 Subject: [PATCH] Bump tower-http from 0.2.5 to 0.3.0 (#343) Bumps [tower-http](https://github.com/tower-rs/tower-http) from 0.2.5 to 0.3.0. - [Release notes](https://github.com/tower-rs/tower-http/releases) - [Commits](https://github.com/tower-rs/tower-http/compare/tower-http-0.2.5...tower-http-0.3.0) --- 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 | 22 ++++++++++++++++++++-- atuin-server/Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f720d00..9d6a921 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -166,7 +166,7 @@ dependencies = [ "sqlx", "tokio", "tower", - "tower-http", + "tower-http 0.3.0", "tracing", "uuid", "whoami", @@ -204,7 +204,7 @@ dependencies = [ "sync_wrapper", "tokio", "tower", - "tower-http", + "tower-http 0.2.5", "tower-layer", "tower-service", ] @@ -2391,6 +2391,24 @@ dependencies = [ "tower", "tower-layer", "tower-service", +] + +[[package]] +name = "tower-http" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79dd37121c38240c4b4fe6520332406218bbf876f2f690fe9e406020189366fd" +dependencies = [ + "bitflags", + "bytes", + "futures-core", + "futures-util", + "http", + "http-body", + "http-range-header", + "pin-project-lite", + "tower-layer", + "tower-service", "tracing", ] diff --git a/atuin-server/Cargo.toml b/atuin-server/Cargo.toml index c3e7f66..4087dcd 100644 --- a/atuin-server/Cargo.toml +++ b/atuin-server/Cargo.toml @@ -30,4 +30,4 @@ http = "0.2" fs-err = "2.7" chronoutil = "0.2.3" tower = "0.4" -tower-http = { version = "0.2", features = ["trace"] } +tower-http = { version = "0.3", features = ["trace"] }