diff options
| author | Fuwn <[email protected]> | 2021-03-25 22:20:21 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-03-25 22:20:21 +0000 |
| commit | 5fc28bfb2851441893ef2ad5f72e0feb8a0a22cc (patch) | |
| tree | f39b7bccc486298b1b7f4945cad37b4839817b73 /Cargo.toml | |
| parent | feature: Byte utilities (diff) | |
| download | whirl-5fc28bfb2851441893ef2ad5f72e0feb8a0a22cc.tar.xz whirl-5fc28bfb2851441893ef2ad5f72e0feb8a0a22cc.zip | |
major: Publish work-in-progress
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 20 |
1 files changed, 15 insertions, 5 deletions
@@ -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"] |