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.lock | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) (limited to 'Cargo.lock') diff --git a/Cargo.lock b/Cargo.lock index a1a26a9..7ed2554 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -541,7 +541,8 @@ dependencies = [ "cfg_file", "string_proc", "tcp_connection", - "vcs", + "vcs_actions", + "vcs_data", ] [[package]] @@ -1370,7 +1371,18 @@ dependencies = [ ] [[package]] -name = "vcs" +name = "vcs_actions" +version = "0.1.0" +dependencies = [ + "action_system", + "cfg_file", + "string_proc", + "tcp_connection", + "vcs_data", +] + +[[package]] +name = "vcs_data" version = "0.1.0" dependencies = [ "action_system", @@ -1384,14 +1396,14 @@ dependencies = [ ] [[package]] -name = "vcs_test" +name = "vcs_data_test" version = "0.1.0" dependencies = [ "cfg_file", "tcp_connection", "tcp_connection_test", "tokio", - "vcs", + "vcs_data", ] [[package]] -- cgit