summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml5
1 files changed, 4 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d2d44d5..67ef00c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -12,12 +12,14 @@ all = [
utils = [
"cfg_file",
"data_struct",
+ "hex_display",
"sha1_hash",
"tcp_connection",
"string_proc",
]
cfg_file = []
data_struct = []
+hex_display = []
sha1_hash = []
tcp_connection = []
string_proc = []
@@ -43,7 +45,6 @@ members = [
"utils/data_struct",
"utils/hex_display",
"utils/sha1_hash",
- "utils/string_proc",
"utils/tcp_connection",
"utils/tcp_connection/tcp_connection_test",
@@ -51,6 +52,7 @@ members = [
"legacy_data",
"legacy_data/tests",
"legacy_actions",
+ "utils/string_proc", # Will be gradually migrated to `just_fmt`
# LEGACY AREA
]
@@ -90,6 +92,7 @@ vcs_docs = { path = "docs" }
# Utils
cfg_file = { path = "utils/cfg_file" }
data_struct = { path = "utils/data_struct" }
+hex_display = { path = "utils/hex_display" }
sha1_hash = { path = "utils/sha1_hash" }
tcp_connection = { path = "utils/tcp_connection" }
string_proc = { path = "utils/string_proc" }