17 lines
400 B
TOML
17 lines
400 B
TOML
[package]
|
|
name = "vulkan-intro"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
ash = "0.38.0"
|
|
ash-window = "0.13.0"
|
|
dotenvy = "0.15.7"
|
|
env_logger = "0.11.3"
|
|
gpu-allocator = "0.27.0"
|
|
log = "0.4.22"
|
|
thiserror = "1.0.62"
|
|
vk-shader-macros = "0.2.10"
|
|
winit = { version = "0.29", features = ["rwh_06"] }
|