learn-wgpu/code/beginner/tutorial8-depth/Cargo.toml

32 lines
507 B
TOML
Raw Normal View History

2020-01-11 22:55:08 +00:00
[package]
name = "tutorial8-depth"
version = "0.1.0"
authors = ["Ben Hansen <bhbenjaminhansen@gmail.com>"]
edition = "2018"
[dependencies]
2020-09-07 05:21:40 +00:00
anyhow = "1.0"
bytemuck = { version = "1.4", features = [ "derive" ] }
2021-04-11 07:38:53 +00:00
cgmath = "0.18"
env_logger = "0.9"
2021-07-14 12:26:05 +00:00
pollster = "0.2"
2020-04-22 09:39:40 +00:00
image = "0.23"
2020-09-08 06:42:52 +00:00
log = "0.4"
2021-12-27 19:09:25 +00:00
wgpu = "0.12"
winit = "0.26"
2020-09-07 05:21:40 +00:00
[build-dependencies]
anyhow = "1.0"
fs_extra = "1.2"
glob = "0.3"
2020-01-11 22:55:08 +00:00
[[bin]]
name = "tutorial8-depth"
path = "src/main.rs"
[[bin]]
name = "tutorial8-challenge"
2020-04-22 09:39:40 +00:00
path = "src/challenge.rs"