mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-25 16:24:24 +00:00
22 lines
395 B
TOML
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" }
|