From 62dd79cea8bfc0b6af95049d8a0187dd2380b09c Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 6 Nov 2025 22:10:06 +0800 Subject: update: Dependencies and project configuration - Update Cargo.lock with latest dependencies - Add new dependencies to Cargo.toml - Update vcs_data crate dependencies --- Cargo.toml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'Cargo.toml') 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" } -- cgit