learn-wgpu/code/beginner/tutorial4-buffer/Cargo.toml

24 lines
478 B
TOML
Raw Normal View History

[package]
name = "tutorial4-buffer"
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"
2020-04-19 19:57:01 +00:00
wgpu = "0.5.0"
futures = "0.3.4"
bytemuck = "1.2.0"
[[bin]]
name = "tutorial4-buffer"
2019-12-30 20:35:01 +00:00
path = "src/main.rs"
[[bin]]
name = "tutorial4-challenge"
2019-12-30 20:35:01 +00:00
path = "src/challenge.rs"