Added ash and thiserror dependencies to the renderer crate. Defined RendererError for typed Vulkan failure handling. Implemented the Renderer struct with basic Vulkan Entry and Instance creation.
13 lines
227 B
TOML
13 lines
227 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"
|