Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1d04496

Browse files
committedFeb 3, 2021
Explicitly sequence I/O operations on the underlying stream.
1 parent 4d8bb97 commit 1d04496

13 files changed

+1018
-550
lines changed
 

‎Cargo.toml

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ categories = [
1111
"parser-implementations",
1212
"web-programming",
1313
"web-programming::http-client",
14-
"web-programming::http-server"
14+
"web-programming::http-server",
1515
]
1616
authors = ["Yoshua Wuyts <yoshuawuyts@gmail.com>"]
1717
readme = "README.md"
@@ -28,6 +28,10 @@ log = "0.4.11"
2828
pin-project = "1.0.2"
2929
async-channel = "1.5.1"
3030
async-dup = "1.2.2"
31+
futures-channel = "0.3.12"
32+
futures-io = "0.3.12"
33+
futures-lite = "1.11.3"
34+
futures-util = "0.3.12"
3135

3236
[dev-dependencies]
3337
pretty_assertions = "0.6.1"

0 commit comments

Comments
 (0)
Please sign in to comment.