Rename assets crate to asset

This commit is contained in:
reo 2025-08-17 21:23:11 +03:00
parent 3458662cfc
commit 9816f14f53
7 changed files with 4 additions and 4 deletions

View file

@ -3,6 +3,6 @@ members = [
"core",
"glium_platform",
"platform",
"assets",
"asset",
"game"
]

View file

@ -6,5 +6,5 @@ edition = "2024"
[dependencies]
hecs = "0.10.5"
indexmap = "2.10.0"
raidillon_assets = { path = "../assets" }
raidillon_assets = { path = "../asset" }
winit = "0.30.12"

View file

@ -10,6 +10,6 @@ glium = { version = "0.35.0", features = ["glutin_backend", "simple_window_build
gltf = { version = "1.4.1", features = ["import", "utils", "KHR_texture_transform"] }
raidillon_platform = { path = "../platform" }
raidillon_core = { path = "../core" }
raidillon_assets = { path = "../assets" }
raidillon_assets = { path = "../asset" }
winit = "0.30.12"
indexmap = "2.10.0"

View file

@ -6,4 +6,4 @@ edition = "2024"
[dependencies]
winit = "0.30.12"
raidillon_core = { path = "../core" }
raidillon_assets = { path = "../assets" }
raidillon_assets = { path = "../asset" }