mirror of
https://github.com/sotrh/learn-wgpu.git
synced 2024-11-08 07:10:33 +00:00
26 lines
421 B
TOML
26 lines
421 B
TOML
[package]
|
|
name = "tutorial13-threading"
|
|
version = "0.1.0"
|
|
authors = ["Ben Hansen <bhbenjaminhansen@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
bytemuck = "1.4"
|
|
cgmath = "0.17"
|
|
env_logger = "0.7"
|
|
futures = "0.3"
|
|
image = "0.23"
|
|
log = "0.4"
|
|
rayon = "1.4" # NEW!
|
|
tobj = "2.0"
|
|
wgpu = "0.6"
|
|
winit = "0.23"
|
|
|
|
[build-dependencies]
|
|
anyhow = "1.0"
|
|
fs_extra = "1.2"
|
|
glob = "0.3"
|
|
rayon = "1.4" # NEW!
|
|
shaderc = "0.6"
|