Skip to content

Commit

Permalink
Tweak tower dependency in axum-extra (#666)
Browse files Browse the repository at this point in the history
Fixes #659
  • Loading branch information
davidpdrsn authored Dec 27, 2021
1 parent a3e1946 commit de37a3e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion axum-extra/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

# Unreleased

- None.
- **fix:** Depend on tower with `default_features = false` ([#666])

[#666]: https://github.com/tokio-rs/axum/pull/666

# 0.1.1 (27. December, 2021)

Expand Down
2 changes: 1 addition & 1 deletion axum-extra/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ axum = { path = "../axum", version = "0.4" }
http = "0.2"
mime = "0.3"
pin-project-lite = "0.2"
tower = { version = "0.4", features = ["util"] }
tower = { version = "0.4", default_features = false, features = ["util"] }
tower-http = { version = "0.2", features = ["util", "map-response-body"] }
tower-layer = "0.3"
tower-service = "0.3"
Expand Down

0 comments on commit de37a3e

Please sign in to comment.