summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-02-07 18:08:42 +0800
committer魏曹先生 <1992414357@qq.com>2026-02-07 18:08:42 +0800
commit4f184a439056d2b5dff7aa2fa1b1a73a1cbe9582 (patch)
tree9d458e89ca8630dd402eec9dd519e333ed668fb3 /Cargo.toml
parentf0001b45f91e7889c7060e45ac6c740401f7acb3 (diff)
Add asset system with file locking and atomic writes
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml8
1 files changed, 7 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index c3498a0..68836ba 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -35,16 +35,21 @@ members = [
"utils/string_proc",
+ "systems/asset",
+ "systems/asset/macros",
+ "systems/asset/test",
+
"systems/action",
"systems/action/action_macros",
"systems/_constants",
"systems/_constants/macros",
+ # LEGACY AREA
"legacy_data",
"legacy_data/tests",
-
"legacy_actions",
+ # LEGACY AREA
"docs",
@@ -86,6 +91,7 @@ tcp_connection = { path = "utils/tcp_connection" }
string_proc = { path = "utils/string_proc" }
# Systems
+asset = { path = "systems/asset" }
action_system = { path = "systems/action" }
constants = { path = "systems/_constants" }