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", "core",
"glium_platform", "glium_platform",
"platform", "platform",
"assets", "asset",
"game" "game"
] ]

View file

@ -6,5 +6,5 @@ edition = "2024"
[dependencies] [dependencies]
hecs = "0.10.5" hecs = "0.10.5"
indexmap = "2.10.0" indexmap = "2.10.0"
raidillon_assets = { path = "../assets" } raidillon_assets = { path = "../asset" }
winit = "0.30.12" 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"] } gltf = { version = "1.4.1", features = ["import", "utils", "KHR_texture_transform"] }
raidillon_platform = { path = "../platform" } raidillon_platform = { path = "../platform" }
raidillon_core = { path = "../core" } raidillon_core = { path = "../core" }
raidillon_assets = { path = "../assets" } raidillon_assets = { path = "../asset" }
winit = "0.30.12" winit = "0.30.12"
indexmap = "2.10.0" indexmap = "2.10.0"

View file

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