learn-wgpu/code/beginner/tutorial2-swapchain/Cargo.toml

23 lines
455 B
TOML
Raw Normal View History

[package]
name = "tutorial2-swapchain"
version = "0.1.0"
authors = ["Ben Hansen <bhbenjaminhansen@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
image = "0.22"
winit = "0.20.0-alpha4"
glsl-to-spirv = "0.1"
cgmath = "0.17"
wgpu = "0.4"
[[bin]]
name = "tutorial2-swapchain"
2019-12-30 20:35:01 +00:00
path = "src/main.rs"
[[bin]]
name = "tutorial2-challenge"
2019-12-30 20:35:01 +00:00
path = "src/challenge.rs"