aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-17 09:43:26 +0000
committerFuwn <[email protected]>2021-05-17 09:43:26 +0000
commit34101185feeebca00b4f142a9b13ff0d0e28531a (patch)
treeb341ddaed17fe05d001536d3d5ec03f8941c236d /Cargo.toml
parentperf(builtins): help commands to constants (diff)
downloadwhirl-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.toml9
1 files changed, 7 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 01a9f68..69597db 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"] }