mirror of
https://github.com/sotrh/learn-wgpu.git
synced 2024-11-10 01:10:28 +00:00
24 lines
444 B
TOML
24 lines
444 B
TOML
[package]
|
|
name = "pong"
|
|
version = "0.1.0"
|
|
authors = ["Ben Hansen <bhbenjaminhansen@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
winit = "0.25"
|
|
shaderc = "0.7"
|
|
anyhow = "1.0"
|
|
bytemuck = { version = "1.4", features = [ "derive" ] }
|
|
cgmath = "0.18"
|
|
pollster = "0.2"
|
|
wgpu = { version = "0.11", features = ["spirv"]}
|
|
wgpu_glyph = "0.15"
|
|
rand = "0.8"
|
|
rodio = "0.14"
|
|
|
|
[build-dependencies]
|
|
anyhow = "1.0"
|
|
fs_extra = "1.2"
|
|
glob = "0.3"
|
|
shaderc = "0.7"
|