wgpu/examples/Cargo.toml

30 lines
548 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
2019-02-10 23:57:04 +00:00
[[bin]]
name = "hello_compute"
path = "hello_compute_rust/main.rs"
2018-09-22 22:54:19 +00:00
[features]
default = []
2019-02-14 19:08:19 +00:00
local = ["wgpu-native/local"]
2019-02-12 19:58:57 +00:00
metal = ["wgpu/metal"]
dx11 = ["wgpu/dx11"]
dx12 = ["wgpu/dx12"]
vulkan = ["wgpu/vulkan"]
2018-09-22 22:54:19 +00:00
[dependencies]
wgpu-native = { path = "../wgpu-native" }
2019-02-14 19:08:19 +00:00
wgpu = { path = "../wgpu-rs" }
env_logger = "0.5"