26 lines
633 B
TOML
26 lines
633 B
TOML
[package]
|
|
name = "engine"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
egui.workspace = true
|
|
egui_tiles.workspace = true
|
|
ash.workspace = true
|
|
ash-window.workspace = true
|
|
color-eyre.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
winit.workspace = true
|
|
raw-window-handle.workspace = true
|
|
thiserror.workspace = true
|
|
glam.workspace = true
|
|
|
|
gfx_hal = { path = "../gfx_hal" }
|
|
renderer = { path = "../renderer" }
|
|
resource_manager = { path = "../resource_manager" }
|
|
shared = { path = "../shared" }
|
|
scene = { path = "../scene" }
|
|
|
|
clap = { version = "4.5.34", features = ["derive"] }
|
|
egui-winit = "0.31.1"
|