aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-03-21 18:23:35 +0000
committerFuwn <[email protected]>2021-03-21 18:23:35 +0000
commit3fb3d6801d1dc0e515d40fabb29efaf4d81df861 (patch)
treec300c4c059911f01d8a8d81cd3bcc7b85343be4f
parentrefactor: move broadcast function to separate module (diff)
downloadwhirl-3fb3d6801d1dc0e515d40fabb29efaf4d81df861.tar.xz
whirl-3fb3d6801d1dc0e515d40fabb29efaf4d81df861.zip
chore: organize dependencies
-rw-r--r--Cargo.toml9
1 files changed, 9 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 9736f6c..db72de2 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -15,9 +15,18 @@ publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
+# TCP
+
mio = "0.6"
+# Logging
log = "0.4.14"
pretty_env_logger = "0.4.0"
+
+# Environment
dotenv = "0.15.0"
+
+# Utility
rand = "0.8.3"
+
+# Database
rusqlite = "0.24.2"