From 4f184a439056d2b5dff7aa2fa1b1a73a1cbe9582 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 7 Feb 2026 18:08:42 +0800 Subject: Add asset system with file locking and atomic writes --- Cargo.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'Cargo.toml') 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" } -- cgit