mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-21 14:46:32 +01:00
Upgrade headers to 0.4.0 (#2351)
This commit is contained in:
parent
a9ac5241dc
commit
fc3cb44b91
4 changed files with 3 additions and 7 deletions
|
@ -5,7 +5,3 @@ default-members = ["axum", "axum-*"]
|
|||
# Example has been deleted, but README.md remains
|
||||
exclude = ["examples/async-graphql"]
|
||||
resolver = "2"
|
||||
|
||||
[patch.crates-io]
|
||||
# for http 1.0. PR to update is merged but not published
|
||||
headers = { git = "https://github.com/hyperium/headers", rev = "4400aa90c47a7" }
|
||||
|
|
|
@ -54,7 +54,7 @@ tower-service = "0.3"
|
|||
axum-macros = { path = "../axum-macros", version = "0.3.7", optional = true }
|
||||
cookie = { package = "cookie", version = "0.18.0", features = ["percent-encode"], optional = true }
|
||||
form_urlencoded = { version = "1.1.0", optional = true }
|
||||
headers = { version = "0.3.8", optional = true }
|
||||
headers = { version = "0.4.0", optional = true }
|
||||
multer = { version = "2.0.0", optional = true }
|
||||
percent-encoding = { version = "2.1", optional = true }
|
||||
prost = { version = "0.12", optional = true }
|
||||
|
|
|
@ -8,7 +8,7 @@ publish = false
|
|||
axum = { path = "../../axum" }
|
||||
axum-extra = { path = "../../axum-extra", features = ["typed-header"] }
|
||||
futures = "0.3"
|
||||
headers = "0.3"
|
||||
headers = "0.4"
|
||||
tokio = { version = "1.0", features = ["full"] }
|
||||
tokio-stream = "0.1"
|
||||
tower-http = { version = "0.5.0", features = ["fs", "trace"] }
|
||||
|
|
|
@ -9,7 +9,7 @@ axum = { path = "../../axum", features = ["ws"] }
|
|||
axum-extra = { path = "../../axum-extra", features = ["typed-header"] }
|
||||
futures = "0.3"
|
||||
futures-util = { version = "0.3", default-features = false, features = ["sink", "std"] }
|
||||
headers = "0.3"
|
||||
headers = "0.4"
|
||||
tokio = { version = "1.0", features = ["full"] }
|
||||
tokio-tungstenite = "0.20"
|
||||
tower = { version = "0.4", features = ["util"] }
|
||||
|
|
Loading…
Reference in a new issue