2020-10-09 15:22:07 +00:00
|
|
|
[package]
|
|
|
|
name = "example-runner"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Embark <opensource@embark-studios.com>"]
|
|
|
|
edition = "2018"
|
2020-10-25 15:15:04 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-10-09 15:22:07 +00:00
|
|
|
|
2020-10-29 22:03:07 +00:00
|
|
|
# See rustc_codegen_spirv/Cargo.toml for details on these features
|
|
|
|
[features]
|
|
|
|
default = ["use-compiled-tools"]
|
|
|
|
use-installed-tools = ["spirv-builder/use-installed-tools"]
|
|
|
|
use-compiled-tools = ["spirv-builder/use-compiled-tools"]
|
|
|
|
|
2020-10-09 15:22:07 +00:00
|
|
|
[dependencies]
|
|
|
|
ash = "0.31"
|
|
|
|
ash-window = "0.5"
|
2020-10-14 16:33:37 +00:00
|
|
|
cfg-if = "1.0.0"
|
2020-10-13 21:42:15 +00:00
|
|
|
structopt = "0.3.20"
|
2020-10-22 10:23:11 +00:00
|
|
|
winit = "0.23.0"
|
2020-10-09 15:22:07 +00:00
|
|
|
|
2020-10-14 16:33:37 +00:00
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
|
|
ash-molten = { git = "https://github.com/EmbarkStudios/ash-molten", branch = "moltenvk-1.1.0" }
|
|
|
|
|
2020-10-09 15:22:07 +00:00
|
|
|
[build-dependencies]
|
2020-10-29 22:03:07 +00:00
|
|
|
spirv-builder = { path = "../../spirv-builder", default-features = false }
|