wgpu/examples/Cargo.toml
2018-09-22 16:54:19 -06:00

22 lines
395 B
TOML

[package]
name = "examples"
version = "0.1.0"
authors = [
"Dzmitry Malyshau <kvark@mozilla.com>",
"Joshua Groves <josh@joshgroves.com>",
]
publish = false
[[bin]]
name = "hello_triangle"
path = "hello_triangle/main.rs"
[features]
default = []
metal = ["wgpu-native/metal"]
dx12 = ["wgpu-native/dx12"]
vulkan = ["wgpu-native/vulkan"]
[dependencies]
wgpu-native = { path = "../wgpu-native" }