learn-wgpu/code/beginner/tutorial5-textures/Cargo.toml
2020-08-29 15:22:06 -06:00

31 lines
554 B
TOML

[package]
name = "tutorial5-textures"
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.23"
winit = "0.22"
cgmath = "0.17"
failure = "0.1"
wgpu = "0.6"
futures = "0.3"
bytemuck = "1.4"
[build-dependencies]
anyhow = "1.0"
fs_extra = "1.2"
glob = "0.3"
shaderc = "0.6"
[[bin]]
name = "tutorial5-textures"
path = "src/main.rs"
[[bin]]
name = "tutorial5-challenge"
path = "src/challenge.rs"