summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-03-11 15:34:47 +0800
committer魏曹先生 <1992414357@qq.com>2026-03-11 15:34:47 +0800
commit8b38e22525adcafecd8b50daf041a1dc2d672d0b (patch)
treeb5c012dbbdd6975f405105b778d0ba9354a21233 /Cargo.toml
parente49128388e3b2f73523d82bf7f16fa1eae019c37 (diff)
Replace cfg_file with new config system
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml14
1 files changed, 9 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 3b6c1b5..e67b07c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -34,9 +34,7 @@ members = [
"systems/sheet",
"systems/sheet/macros",
"systems/vault",
- "utils/cfg_file",
- "utils/cfg_file/cfg_file_derive",
- "utils/cfg_file/cfg_file_test",
+ "systems/workspace",
"utils/data_struct",
"utils/hex_display",
"utils/sha1_hash",
@@ -44,11 +42,15 @@ members = [
"utils/tcp_connection/tcp_connection_test",
# LEGACY AREA
+ "legacy_actions",
"legacy_data",
"legacy_data/tests",
- "legacy_actions",
"legacy_systems/action",
"legacy_systems/action/action_macros",
+ "legacy_utils/cfg_file",
+ "legacy_utils/cfg_file/cfg_file_derive",
+ "legacy_utils/cfg_file/cfg_file_test",
+ "systems/_config",
# LEGACY AREA
]
@@ -94,7 +96,7 @@ jvlib = { path = "ffi" }
vcs_docs = { path = "docs" }
# Utils
-cfg_file = { path = "utils/cfg_file" }
+cfg_file = { path = "legacy_utils/cfg_file" }
data_struct = { path = "utils/data_struct" }
hex_display = { path = "utils/hex_display" }
sha1_hash = { path = "utils/sha1_hash" }
@@ -102,9 +104,11 @@ tcp_connection = { path = "utils/tcp_connection" }
# Systems
asset_system = { path = "systems/_asset" }
+config_system = { path = "systems/_config" }
constants = { path = "systems/_constants" }
sheet_system = { path = "systems/sheet" }
vault_system = { path = "systems/vault" }
+workspace_system = { path = "systems/workspace" }
# Legacy
vcs_data = { path = "legacy_data" }