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 /Cargo.toml | |
| 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
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -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" } |
