Synvael/crates/client/Cargo.toml
Serkyo 9ceefc6654 feat(client): initialize renderer and extract vulkan extensions
Added ash-window dependency to bridge winit and Vulkan. Extracted raw display handle in the event loop and queried required Vulkan extensions to pass down to the renderer initialization.
2026-04-30 01:38:24 +02:00

14 lines
249 B
TOML

[package]
name = "client"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.102"
tracing = "0.1.44"
tracing-subscriber = "0.3.23"
winit = "0.30.13"
renderer = { path = "../renderer" }
raw-window-handle = "0.6.2"
ash-window = "0.13.0"