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/test/Cargo.toml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 systems/asset/test/Cargo.toml (limited to 'systems/asset/test/Cargo.toml') diff --git a/systems/asset/test/Cargo.toml b/systems/asset/test/Cargo.toml new file mode 100644 index 0000000..07c6282 --- /dev/null +++ b/systems/asset/test/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "asset_test" +version.workspace = true +edition = "2024" + +[dependencies] +asset = { path = "../" } + +tokio = { version = "1.48.0", features = ["full"] } -- cgit