mirror of
https://github.com/sotrh/learn-wgpu.git
synced 2024-11-08 07:10:33 +00:00
29 lines
459 B
TOML
29 lines
459 B
TOML
[package]
|
|
name = "tutorial7-instancing"
|
|
version = "0.1.0"
|
|
authors = ["Ben Hansen <bhbenjaminhansen@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
bytemuck = "1.4"
|
|
cgmath = "0.17"
|
|
futures = "0.3"
|
|
image = "0.23"
|
|
wgpu = "0.6"
|
|
winit = "0.22"
|
|
|
|
[build-dependencies]
|
|
anyhow = "1.0"
|
|
fs_extra = "1.2"
|
|
glob = "0.3"
|
|
shaderc = "0.6"
|
|
|
|
[[bin]]
|
|
name = "tutorial7-instancing"
|
|
path = "src/main.rs"
|
|
|
|
|
|
[[bin]]
|
|
name = "tutorial7-challenge"
|
|
path = "src/challenge.rs" |