diff options
| author | 魏曹先生 <1992414357@qq.com> | 2025-10-06 04:12:07 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2025-10-06 04:12:07 +0800 |
| commit | 8ef9f06df67d3ad2d1d1a9038ee93e26ec615489 (patch) | |
| tree | f8a51bf3ea8776db3d95cc5ba6c05515dd93b595 | |
| parent | ee7cba690582b9c47e8c856bf0bd331eedda7908 (diff) | |
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
| -rw-r--r-- | Cargo.lock | 20 | ||||
| -rw-r--r-- | Cargo.toml | 9 |
2 files changed, 22 insertions, 7 deletions
@@ -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]] @@ -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" } |
