learn-wgpu/code/intermediate/tutorial10-lighting/Cargo.toml

27 lines
461 B
TOML
Raw Normal View History

2020-02-21 22:12:43 +00:00
[package]
name = "tutorial10-lighting"
2020-02-21 22:12:43 +00:00
version = "0.1.0"
authors = ["Ben Hansen <bhbenjaminhansen@gmail.com>"]
edition = "2018"
[dependencies]
2020-09-11 21:03:19 +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 04:12:29 +00:00
image = "0.23"
2020-09-11 21:03:19 +00:00
log = "0.4"
2021-06-01 12:57:56 +00:00
tobj = "3.0"
wgpu = "0.9"
2021-06-19 22:31:49 +00:00
winit = "0.25"
2020-02-21 22:12:43 +00:00
2020-09-11 21:03:19 +00:00
[build-dependencies]
anyhow = "1.0"
fs_extra = "1.2"
glob = "0.3"
2020-02-21 22:12:43 +00:00
[[bin]]
name = "tutorial10-lighting"
2021-07-14 12:26:05 +00:00
path = "src/main.rs"