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

26 lines
494 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"
2021-05-01 21:55:26 +00:00
env_logger = "0.8"
2020-09-11 21:03:19 +00:00
futures = "0.3"
2020-04-22 04:12:29 +00:00
image = "0.23"
2020-09-11 21:03:19 +00:00
log = "0.4"
tobj = "2.0"
2021-05-04 21:31:58 +00:00
wgpu = { version = "0.8", features = ["cross"]}
2021-04-15 15:28:55 +00:00
winit = "0.24"
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-05-18 03:28:12 +00:00
path = "src/main.rs"