wgpu/examples/Cargo.toml

24 lines
499 B
TOML
Raw Normal View History

2018-09-22 22:54:19 +00:00
[package]
name = "examples"
version = "0.1.0"
authors = [
"Dzmitry Malyshau <kvark@mozilla.com>",
"Joshua Groves <josh@joshgroves.com>",
]
publish = false
[[bin]]
name = "hello_triangle"
2018-09-23 19:25:05 +00:00
path = "hello_triangle_rust/main.rs"
2018-09-22 22:54:19 +00:00
[features]
default = []
2018-09-24 05:05:12 +00:00
remote = ["wgpu-native/remote"]
2018-09-26 14:54:09 +00:00
metal = ["wgpu-native/gfx-backend-metal"]
dx12 = ["wgpu-native/gfx-backend-dx12"]
vulkan = ["wgpu-native/gfx-backend-vulkan"]
2018-09-22 22:54:19 +00:00
[dependencies]
wgpu-native = { path = "../wgpu-native" }
wgpu = { path = "../wgpu-rs" }