vulkan-tutorial/Cargo.toml

18 lines
434 B
INI
Raw Normal View History

2023-03-31 10:33:37 -04:00
[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"
log = "0.4"
nalgebra-glm = "0.17"
png = "0.17"
pretty_env_logger = "0.4"
thiserror = "1"
tobj = { version = "3", features = ["log"] }
2023-04-13 10:14:10 -04:00
vulkanalia = { version = "0.16.0", features = ["libloading", "window", "provisional"] }
2023-03-31 10:33:37 -04:00
winit = "0.27"