19 lines
438 B
INI
19 lines
438 B
INI
|
[package]
|
||
|
name = "vulkan-tutorial"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
anyhow = "1"
|
||
|
lazy_static = "1"
|
||
|
log = "0.4"
|
||
|
nalgebra-glm = "0.17"
|
||
|
png = "0.17"
|
||
|
pretty_env_logger = "0.4"
|
||
|
thiserror = "1"
|
||
|
tobj = { version = "3", features = ["log"] }
|
||
|
vulkanalia = { version = "=0.16.0", features = ["libloading", "window"] }
|
||
|
winit = "0.27"
|