1
1
mirror of https://github.com/ellie/atuin.git synced 2024-09-19 08:57:16 +03:00

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>
This commit is contained in:
dependabot[bot] 2022-04-26 08:11:57 +01:00 committed by GitHub
parent 3680f4ac5e
commit b692e0cee0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 3 deletions

22
Cargo.lock generated
View File

@ -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",
]

View File

@ -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"] }