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 --- systems/asset/Cargo.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 systems/asset/Cargo.toml (limited to 'systems/asset/Cargo.toml') diff --git a/systems/asset/Cargo.toml b/systems/asset/Cargo.toml new file mode 100644 index 0000000..90ca9a7 --- /dev/null +++ b/systems/asset/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "asset" +edition = "2024" +version.workspace = true + +[dependencies] +string_proc = { path = "../../utils/string_proc" } + +asset_macros = { path = "macros" } +tokio = { version = "1.48.0", features = ["full"] } +thiserror = "1.0.69" + +winapi = { version = "0.3", features = ["winnt"] } + +constants = { path = "../_constants" } -- cgit