From c4b6bcb0870d17c91afa0b0f4a9d8020bbf8208a Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 6 Oct 2025 02:14:03 +0800 Subject: Rename vcs_service to action_system for better naming clarity - Create new action_system crate with action framework - Create action_system_macros crate for procedural macros - Update vcs crate dependencies to use action_system - Maintain same functionality with improved naming --- crates/vcs/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/vcs') diff --git a/crates/vcs/Cargo.toml b/crates/vcs/Cargo.toml index 98ab6c9..888e18d 100644 --- a/crates/vcs/Cargo.toml +++ b/crates/vcs/Cargo.toml @@ -7,7 +7,7 @@ version.workspace = true tcp_connection = { path = "../utils/tcp_connection" } cfg_file = { path = "../utils/cfg_file", features = ["default"] } string_proc = { path = "../utils/string_proc" } -vcs_service = { path = "../service" } +action_system = { path = "../system_action" } # Identity uuid = { version = "1.18.1", features = ["v4", "serde"] } -- cgit