raindrop/crates/renderer/Cargo.toml

26 lines
529 B
TOML
Raw Normal View History

2025-03-28 16:33:40 -04:00
[package]
name = "renderer"
version = "0.1.0"
edition = "2021"
[dependencies]
ash.workspace = true
tracing.workspace = true
thiserror.workspace = true
glam.workspace = true
bytemuck.workspace = true
gpu-allocator.workspace = true
egui.workspace = true
egui-ash-renderer.workspace = true
winit.workspace = true
gfx_hal = { path = "../gfx_hal" }
resource_manager = { path = "../resource_manager" }
2025-04-01 21:41:24 -04:00
shared = { path = "../shared" }
2025-04-05 20:54:38 -04:00
scene = { path = "../scene" }
2025-03-28 16:33:40 -04:00
[build-dependencies]
shaderc = "0.9.1"
walkdir = "2"
anyhow = "1.0"