synvael/crates/renderer/Cargo.toml
Serkyo d60ccd7918 feat(renderer): implement base Vulkan instance initialization
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.
2026-04-30 01:29:04 +02:00

9 lines
115 B
TOML

[package]
name = "renderer"
version = "0.1.0"
edition = "2024"
[dependencies]
ash = "0.38.0"
thiserror = "2.0.18"