2025-03-26 20:02:58 -04:00
|
|
|
[package]
|
|
|
|
|
name = "engine"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-03-28 16:33:40 -04:00
|
|
|
egui.workspace = true
|
2025-03-26 20:02:58 -04:00
|
|
|
ash.workspace = true
|
2025-03-28 17:31:16 -04:00
|
|
|
ash-window.workspace = true
|
2025-03-31 14:54:56 -04:00
|
|
|
color-eyre.workspace = true
|
2025-03-26 20:02:58 -04:00
|
|
|
tracing.workspace = true
|
|
|
|
|
tracing-subscriber.workspace = true
|
2025-03-28 16:33:40 -04:00
|
|
|
winit.workspace = true
|
|
|
|
|
raw-window-handle.workspace = true
|
2025-03-26 20:02:58 -04:00
|
|
|
thiserror.workspace = true
|
|
|
|
|
|
|
|
|
|
gfx_hal = { path = "../gfx_hal" }
|
2025-03-28 16:33:40 -04:00
|
|
|
renderer = { path = "../renderer" }
|
2025-03-26 20:02:58 -04:00
|
|
|
resource_manager = { path = "../resource_manager" }
|
2025-03-29 12:35:32 -04:00
|
|
|
clap = { version = "4.5.34", features = ["derive"] }
|
2025-03-31 14:54:56 -04:00
|
|
|
egui-winit = "0.31.1"
|