aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-03-21 18:23:35 -0700
committerFuwn <[email protected]>2021-03-21 18:23:35 -0700
commit747dcc03c5fb328857c4d23ea348b65c93d4c629 (patch)
tree73a7cc4162bfe0e684d72b99a2e877eb56692817
parentrefactor: move broadcast function to separate module (diff)
downloadwhirl-747dcc03c5fb328857c4d23ea348b65c93d4c629.tar.xz
whirl-747dcc03c5fb328857c4d23ea348b65c93d4c629.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 d137d68..71b7882 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"