summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml13
1 files changed, 12 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 631841e..1643e6d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,9 +5,17 @@ license-file = "LICENSE-MIT.md"
authors = ["Weicao-CatilGrass (GitHub)"]
[features]
-all = ["cfg_file", "data_struct", "tcp_connection", "string_proc", "vcs"]
+all = [
+ "cfg_file",
+ "data_struct",
+ "sha1_hash",
+ "tcp_connection",
+ "string_proc",
+ "vcs",
+]
cfg_file = []
data_struct = []
+sha1_hash = []
tcp_connection = []
string_proc = []
vcs = []
@@ -22,6 +30,8 @@ members = [
"crates/utils/data_struct",
+ "crates/utils/sha1_hash",
+
"crates/utils/tcp_connection",
"crates/utils/tcp_connection/tcp_connection_test",
@@ -63,6 +73,7 @@ strip = "symbols"
[dependencies]
cfg_file = { path = "crates/utils/cfg_file" }
data_struct = { path = "crates/utils/data_struct" }
+sha1_hash = { path = "crates/utils/sha1_hash" }
tcp_connection = { path = "crates/utils/tcp_connection" }
string_proc = { path = "crates/utils/string_proc" }