crystal_vk/lib.rs
1//! ## Crystal VK
2//! This library provides convenient abstractions over Vulkan while maintaining its
3//! flexibility and control. It is ideal for developers who want to leverage the
4//! full power of Vulkan in Rust without delving into the details of manual resource management.
5//!
6//! ## 🚀 Quick Start
7//! Add `crystal-vk` to your `Cargo.toml` dependencies
8//! ```toml
9//! [dependencies]
10//! crystal-vk = "0.2.0"
11//! ```
12
13pub mod buffer;
14pub mod command;
15pub mod device;
16pub mod image;
17pub mod instance;
18pub mod pipeline;
19pub mod render;
20pub mod sync;
21
22pub use ash::vk;