learn-wgpu/code/beginner/tutorial3-pipeline/Cargo.toml

22 lines
443 B
TOML
Raw Normal View History

[package]
name = "tutorial3-pipeline"
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"
2020-01-11 22:55:08 +00:00
winit = "0.20"
glsl-to-spirv = "0.1"
cgmath = "0.17"
wgpu = "0.4"
[[bin]]
name = "tutorial3-pipeline"
2019-12-30 20:35:01 +00:00
path = "src/main.rs"
[[bin]]
name = "tutorial3-challenge"
2019-12-30 20:35:01 +00:00
path = "src/challenge.rs"