summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2022-07-07 16:38:56 +0300
committerYuval Adam <_@yuv.al>2022-07-07 16:38:56 +0300
commit6e182d22b7586280ce1be7f63d9dab1dc33aacec (patch)
treeafb32a07075ef9a84f92d8c73062c20b38172645 /Cargo.toml
parent71cb0c8532ad92e133a6cf56e7511a18dd385e23 (diff)
File source impl is hardHEADmain
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml5
1 files changed, 4 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index a6414b1..299ab21 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,11 +4,14 @@ version = "0.1.0"
edition = "2021"
[dependencies]
+async-std = "1.12.0"
async-stream = "0.3.3"
+bytes = "1.1.0"
futures = "0.3"
futures-core = "0.3.21"
futures-util = "0.3.21"
rand = "0.8"
-tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
+tokio = { version = "1", features = ["full"] }
tokio-codec = "0.1.2"
tokio-stream = "0.1.9"
+tokio-util = { version = "0.7.3", features = ["io", "io-util"] }