mirror of
https://github.com/sotrh/learn-wgpu.git
synced 2024-11-10 01:10:28 +00:00
23 lines
457 B
TOML
23 lines
457 B
TOML
|
[package]
|
||
|
name = "tutorial7-instancing"
|
||
|
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]
|
||
|
image = "0.22"
|
||
|
winit = "0.20.0-alpha4"
|
||
|
glsl-to-spirv = "0.1"
|
||
|
wgpu = "0.4"
|
||
|
cgmath = "0.17"
|
||
|
|
||
|
[[bin]]
|
||
|
name = "tutorial7-instancing"
|
||
|
path = "src/main.rs"
|
||
|
|
||
|
|
||
|
[[bin]]
|
||
|
name = "tutorial7-challenge"
|
||
|
path = "src/challenge.rs"
|