ash/examples/Cargo.toml

15 lines
486 B
TOML
Raw Normal View History

2016-08-14 09:13:39 +10:00
[package]
2016-12-26 00:38:26 +11:00
name = "examples"
2016-08-14 09:13:39 +10:00
version = "0.1.0"
authors = ["maik klein <maikklein@googlemail.com>"]
edition = "2018"
2016-08-14 09:13:39 +10:00
[dependencies]
winit = "0.26"
image = "0.23"
# The examples require the validation layers, which means the SDK or
# equivalent development packages should be present, so we can link
# directly and benefit from the infallible `Entry` constructor.
ash = { path = "../ash", default-features = false, features = ["linked", "debug"] }
2020-09-03 17:07:09 +10:00
ash-window = { path = "../ash-window" }