mirror of
https://github.com/tokio-rs/axum.git
synced 2025-04-16 02:30:56 +02:00
Depend on tower 0.4.10 (#439)
axum uses `impl Layer for ServiceBuilder` internally which requires tower 0.4.10. Making that explicit should help users updating to axum 0.3 without also having to manually bump their tower dependency.
This commit is contained in:
parent
2b8494a576
commit
1c6038c09f
1 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ serde_urlencoded = "0.7"
|
|||
sync_wrapper = "0.1.1"
|
||||
tokio = { version = "1", features = ["time"] }
|
||||
tokio-util = "0.6"
|
||||
tower = { version = "0.4", default-features = false, features = ["util", "buffer", "make"] }
|
||||
tower = { version = "0.4.10", default-features = false, features = ["util", "buffer", "make"] }
|
||||
tower-http = { version = "0.1", features = ["add-extension", "map-response-body"] }
|
||||
tower-layer = "0.3"
|
||||
tower-service = "0.3"
|
||||
|
@ -65,7 +65,7 @@ uuid = { version = "0.8", features = ["serde", "v4"] }
|
|||
|
||||
[dev-dependencies.tower]
|
||||
package = "tower"
|
||||
version = "0.4"
|
||||
version = "0.4.10"
|
||||
features = [
|
||||
"util",
|
||||
"timeout",
|
||||
|
|
Loading…
Add table
Reference in a new issue