diff options
| author | Fuwn <[email protected]> | 2021-03-29 13:31:02 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-03-29 13:31:02 -0700 |
| commit | 12517eee14d79a2673338c94cbc0d091840b32a3 (patch) | |
| tree | e6092233c3236060974a35614861b20ef9bca88a /Cargo.toml | |
| parent | feature: Implement CLI (diff) | |
| download | whirl-12517eee14d79a2673338c94cbc0d091840b32a3.tar.xz whirl-12517eee14d79a2673338c94cbc0d091840b32a3.zip | |
feature: Use TOML as config instead of environment variables
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -25,11 +25,16 @@ pretty_env_logger = "0.4.0" # Utility rand = "0.8.3" bytes = "1.0.1" +serde = "1.0.125" +serde_derive = "1.0.125" # CLI structopt = "0.3.21" clap = "3.0.0-beta.2" +# Config +confy = "0.4.0" + # TCP [dependencies.tokio] version = "1.4.0" |