From 8ef9f06df67d3ad2d1d1a9038ee93e26ec615489 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 6 Oct 2025 04:12:07 +0800 Subject: Update workspace configuration for new crate structure - Replace vcs with vcs_data and vcs_actions in workspace members - Update Cargo.lock dependencies to reflect new crate names - Maintain workspace structure with reorganized crates --- Cargo.toml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 7c32aaf..72f3270 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,8 +25,10 @@ members = [ "crates/system_action", "crates/system_action/action_macros", - "crates/vcs", - "crates/vcs/vcs_test", + "crates/vcs_data", + "crates/vcs_data/vcs_data_test", + + "crates/vcs_actions", ] [workspace.package] @@ -56,4 +58,5 @@ cfg_file = { path = "crates/utils/cfg_file" } tcp_connection = { path = "crates/utils/tcp_connection" } string_proc = { path = "crates/utils/string_proc" } -vcs = { path = "crates/vcs" } +vcs_data = { path = "crates/vcs_data" } +vcs_actions = { path = "crates/vcs_actions" } -- cgit