Skip to content

Commit

Permalink
Fix futures-util minimum version range. (#84)
Browse files Browse the repository at this point in the history
We rely on futures_util::Future, which was named as such in the 0.3.14
release.

Fixes: #83
  • Loading branch information
WesleyAC authored Feb 1, 2023
1 parent 3c6a3b9 commit 1ab0df8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion http-body-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ categories = ["web-programming"]

[dependencies]
bytes = "1"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
futures-util = { version = "0.3.14", default-features = false, features = ["alloc"] }
http = "0.2"
http-body = { version = "=1.0.0-rc.2", path = "../http-body" }
pin-project-lite = "0.2"
Expand Down

0 comments on commit 1ab0df8

Please sign in to comment.