diff options
| author | Fuwn <[email protected]> | 2021-03-21 18:23:35 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-03-21 18:23:35 +0000 |
| commit | 3fb3d6801d1dc0e515d40fabb29efaf4d81df861 (patch) | |
| tree | c300c4c059911f01d8a8d81cd3bcc7b85343be4f | |
| parent | refactor: move broadcast function to separate module (diff) | |
| download | whirl-3fb3d6801d1dc0e515d40fabb29efaf4d81df861.tar.xz whirl-3fb3d6801d1dc0e515d40fabb29efaf4d81df861.zip | |
chore: organize dependencies
| -rw-r--r-- | Cargo.toml | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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" |