aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2022-04-26 08:11:57 +0100
committerGitHub <noreply@github.com>2022-04-26 08:11:57 +0100
commitb692e0cee0e71391e9413a73268c6ec2db76d4cf (patch)
tree9776ed9c50c630170dd74d84d1ed22394eea71ae
parentBump clap from 3.1.11 to 3.1.12 (#342) (diff)
downloadatuin-b692e0cee0e71391e9413a73268c6ec2db76d4cf.zip
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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-rw-r--r--Cargo.lock22
-rw-r--r--atuin-server/Cargo.toml2
2 files changed, 21 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index f720d00b..9d6a9218 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 c3e7f66a..4087dcd4 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"] }