mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 14:55:05 +00:00
26 lines
562 B
TOML
26 lines
562 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_rust/main.rs"
|
|
|
|
[features]
|
|
default = []
|
|
remote = ["wgpu-native/remote"]
|
|
winit = ["wgpu/winit"]
|
|
metal = ["wgpu-native/gfx-backend-metal"]
|
|
dx11 = ["wgpu-native/gfx-backend-dx11"]
|
|
dx12 = ["wgpu-native/gfx-backend-dx12"]
|
|
vulkan = ["wgpu-native/gfx-backend-vulkan"]
|
|
|
|
[dependencies]
|
|
wgpu-native = { path = "../wgpu-native" }
|
|
wgpu = { path = "../wgpu-rs" }
|