learn-wgpu/code/beginner/tutorial5-textures/Cargo.toml

33 lines
623 B
TOML
Raw Normal View History

[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]
2020-09-05 19:46:15 +00:00
anyhow = "1.0"
bytemuck = { version = "1.4", features = [ "derive" ] }
cgmath = "0.17"
2020-09-08 06:42:52 +00:00
env_logger = "0.7"
log = "0.4"
2020-08-29 21:22:06 +00:00
futures = "0.3"
2020-09-05 19:46:15 +00:00
image = "0.23"
2021-02-07 19:17:22 +00:00
wgpu = "0.7"
2020-09-05 19:46:15 +00:00
winit = "0.22"
2020-08-29 21:22:06 +00:00
[build-dependencies]
anyhow = "1.0"
fs_extra = "1.2"
glob = "0.3"
2021-01-26 08:59:12 +00:00
shaderc = "0.7"
[[bin]]
name = "tutorial5-textures"
2019-12-30 20:35:01 +00:00
path = "src/main.rs"
[[bin]]
name = "tutorial5-challenge"
2019-12-30 20:35:01 +00:00
path = "src/challenge.rs"