aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-03-25 22:20:21 +0000
committerFuwn <[email protected]>2021-03-25 22:20:21 +0000
commit5fc28bfb2851441893ef2ad5f72e0feb8a0a22cc (patch)
treef39b7bccc486298b1b7f4945cad37b4839817b73 /Cargo.toml
parentfeature: Byte utilities (diff)
downloadwhirl-5fc28bfb2851441893ef2ad5f72e0feb8a0a22cc.tar.xz
whirl-5fc28bfb2851441893ef2ad5f72e0feb8a0a22cc.zip
major: Publish work-in-progress
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml20
1 files changed, 15 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 69c8cb8..3d6973b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -15,18 +15,28 @@ publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-# TCP
-mio = "0.6"
+# Environment
+dotenv = "0.15.0"
# Logging
log = "0.4.14"
pretty_env_logger = "0.4.0"
-# Environment
-dotenv = "0.15.0"
-
# Utility
rand = "0.8.3"
+bytes = "1.0.1"
+
+# TCP
+[dependencies.tokio]
+version = "1.4.0"
+features = ["full"]
+[dependencies.tokio-util]
+version = "0.6.5"
+features = ["codec"]
+[dependencies.tokio-stream]
+version = "0.1.5"
+
+# Utility
[dependencies.phf]
version = "0.8.0"
features = ["macros"]