mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 14:55:05 +00:00
28 lines
453 B
TOML
28 lines
453 B
TOML
[package]
|
|
name = "gfx-examples"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Dzmitry Malyshau <kvark@mozilla.com>",
|
|
"Joshua Groves <josh@joshgroves.com>",
|
|
]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "cube"
|
|
path = "src/cube.rs"
|
|
|
|
[features]
|
|
default = []
|
|
metal = ["wgpu/metal"]
|
|
dx11 = ["wgpu/dx11"]
|
|
dx12 = ["wgpu/dx12"]
|
|
vulkan = ["wgpu/vulkan"]
|
|
|
|
[dependencies]
|
|
wgpu = { path = "../wgpu-rs" }
|
|
cgmath = "0.17"
|
|
env_logger = "0.5"
|
|
glsl-to-spirv = "0.1"
|
|
log = "0.4"
|