summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-03-08 22:48:54 +0800
committer魏曹先生 <1992414357@qq.com>2026-03-08 22:48:54 +0800
commit47e0ffd50427440696c245814517e4f5fa94ed83 (patch)
tree777b1107af04f6b5bcc79673064b1821e1b7f59f /Cargo.toml
parent90ed18a41fef137ed0637cf9fc6aa667de2c905f (diff)
Move action system to legacy and remove storage system
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml8
1 files changed, 3 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 0c67d06..f49d3be 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -30,11 +30,8 @@ members = [
"systems/_asset/test",
"systems/_constants",
"systems/_constants/macros",
- "systems/action",
- "systems/action/action_macros",
"systems/sheet",
"systems/sheet/macros",
- "systems/storage",
"utils/cfg_file",
"utils/cfg_file/cfg_file_derive",
"utils/cfg_file/cfg_file_test",
@@ -48,6 +45,8 @@ members = [
"legacy_data",
"legacy_data/tests",
"legacy_actions",
+ "legacy_systems/action",
+ "legacy_systems/action/action_macros",
# LEGACY AREA
]
@@ -102,10 +101,9 @@ tcp_connection = { path = "utils/tcp_connection" }
# Systems
asset_system = { path = "systems/_asset" }
constants = { path = "systems/_constants" }
-action_system = { path = "systems/action" }
sheet_system = { path = "systems/sheet" }
-storage_system = { path = "systems/storage" }
# Legacy
vcs_data = { path = "legacy_data" }
vcs_actions = { path = "legacy_actions" }
+action_system = { path = "legacy_systems/action" }