summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2025-11-06 22:10:06 +0800
committer魏曹先生 <1992414357@qq.com>2025-11-06 22:10:06 +0800
commit62dd79cea8bfc0b6af95049d8a0187dd2380b09c (patch)
tree1d843b768cbc2772e874e76260fb16b25e53c6f0 /Cargo.toml
parent22d76e53091c616fc3c4b8c459c08625a111178f (diff)
update: Dependencies and project configuration
- Update Cargo.lock with latest dependencies - Add new dependencies to Cargo.toml - Update vcs_data crate dependencies
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml9
1 files changed, 8 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index fa5292c..631841e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,8 +5,9 @@ license-file = "LICENSE-MIT.md"
authors = ["Weicao-CatilGrass (GitHub)"]
[features]
-all = ["cfg_file", "tcp_connection", "string_proc", "vcs"]
+all = ["cfg_file", "data_struct", "tcp_connection", "string_proc", "vcs"]
cfg_file = []
+data_struct = []
tcp_connection = []
string_proc = []
vcs = []
@@ -19,6 +20,8 @@ members = [
"crates/utils/cfg_file/cfg_file_derive",
"crates/utils/cfg_file/cfg_file_test",
+ "crates/utils/data_struct",
+
"crates/utils/tcp_connection",
"crates/utils/tcp_connection/tcp_connection_test",
@@ -31,6 +34,8 @@ members = [
"crates/vcs_data/vcs_data_test",
"crates/vcs_actions",
+
+ "crates/vcs_docs",
]
[workspace.package]
@@ -57,10 +62,12 @@ strip = "symbols"
[dependencies]
cfg_file = { path = "crates/utils/cfg_file" }
+data_struct = { path = "crates/utils/data_struct" }
tcp_connection = { path = "crates/utils/tcp_connection" }
string_proc = { path = "crates/utils/string_proc" }
action_system = { path = "crates/system_action" }
+vcs_docs = { path = "crates/vcs_docs" }
vcs_data = { path = "crates/vcs_data" }
vcs_actions = { path = "crates/vcs_actions" }