diff options
| author | Fuwn <[email protected]> | 2021-05-17 09:43:26 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-17 09:43:26 +0000 |
| commit | 34101185feeebca00b4f142a9b13ff0d0e28531a (patch) | |
| tree | b341ddaed17fe05d001536d3d5ec03f8941c236d /Cargo.toml | |
| parent | perf(builtins): help commands to constants (diff) | |
| download | whirl-34101185feeebca00b4f142a9b13ff0d0e28531a.tar.xz whirl-34101185feeebca00b4f142a9b13ff0d0e28531a.zip | |
refactor(global): whirl_config modulized
The config module has now become it's own crate.
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -15,6 +15,9 @@ publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[workspace] +members = ["whirl_config"] + [dependencies] # Environment dotenv = "0.15.0" @@ -32,15 +35,17 @@ simple-error = "0.2.3" # Byte Manipulation bytes = "1.0.1" +byteorder = "1.4.3" + +# Serialization serde = "1.0.126" serde_derive = "1.0.126" -byteorder = "1.4.3" # CLI structopt = "0.3.21" # Config -config = "0.11.0" +whirl_config = { path = "./whirl_config" } # TCP tokio = { version = "1.6.0", features = ["full"] } |