From 5ad175c2532880da714e82b283770a7a2a45364f Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 7 Feb 2026 18:38:17 +0800 Subject: Rename asset crate to asset_system --- systems/asset/test/Cargo.toml | 2 +- systems/asset/test/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'systems/asset/test') diff --git a/systems/asset/test/Cargo.toml b/systems/asset/test/Cargo.toml index 07c6282..3ac0779 100644 --- a/systems/asset/test/Cargo.toml +++ b/systems/asset/test/Cargo.toml @@ -4,6 +4,6 @@ version.workspace = true edition = "2024" [dependencies] -asset = { path = "../" } +asset_system = { path = "../" } tokio = { version = "1.48.0", features = ["full"] } diff --git a/systems/asset/test/src/lib.rs b/systems/asset/test/src/lib.rs index 79a840d..4aad777 100644 --- a/systems/asset/test/src/lib.rs +++ b/systems/asset/test/src/lib.rs @@ -1,6 +1,6 @@ use std::path::PathBuf; -use asset::{ +use asset_system::{ RWDataTest, ensure_eq, error::{DataReadError, DataWriteError}, rw::RWData, -- cgit