mirror of
https://github.com/sotrh/learn-wgpu.git
synced 2024-11-13 13:10:41 +00:00
29 lines
441 B
TOML
29 lines
441 B
TOML
[package]
|
|
name = "performance"
|
|
version = "0.1.0"
|
|
authors = ["Ben Hansen <bhbenjaminhansen@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
image = "0.23"
|
|
winit = "0.22"
|
|
failure = "0.1"
|
|
tobj = "1"
|
|
bytemuck = "1.2"
|
|
futures = "0.3.4"
|
|
wgpu = "0.5.0"
|
|
|
|
[dependencies.cgmath]
|
|
version = "0.17"
|
|
features = ["swizzle"]
|
|
|
|
[build-dependencies]
|
|
shaderc = "0.6"
|
|
glob = "0.3"
|
|
failure = "0.1"
|
|
fs_extra = "1.1"
|
|
|
|
|
|
[[bin]]
|
|
name = "performance"
|
|
path = "src/main.rs" |