24 lines
483 B
TOML
24 lines
483 B
TOML
[package]
|
|
name = "wgpufun"
|
|
version = "0.1.0"
|
|
authors = ["Piotrek <piotrek54pl@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
winit = "0.24"
|
|
wgpu = "0.7"
|
|
futures = "0.3"
|
|
bytemuck = { version = "1.5", features = [ "derive" ] }
|
|
byteorder = "1.4"
|
|
image = "0.23.14"
|
|
cgmath = "0.18"
|
|
rand = "0.8"
|
|
noise = "0.7"
|
|
|
|
[build-dependencies]
|
|
anyhow = "1.0"
|
|
fs_extra = "1.1"
|
|
glob = "0.3"
|
|
shaderc = "0.7" |