ash/ash-examples/Cargo.toml
Marijn Suijten 4bbfa54146
Rename examples to ash-examples (#820)
[Dependabot complains] that:

     the binary target name `examples` is forbidden, it conflicts with with cargo's build directory names

And fails to provide dependency upgrades for Rust code.  Fix that by
renaming the folder and crate to `ash-examples`.

[Dependabot complains]: https://github.com/ash-rs/ash/network/updates/748770724
2023-11-17 17:27:28 +01:00

17 lines
534 B
TOML

[package]
name = "ash-examples"
version = "0.1.0"
authors = ["maik klein <maikklein@googlemail.com>"]
edition = "2021"
publish = false
[dependencies]
image = "0.24"
raw-window-handle = "0.5"
winit = "0.28.0"
# 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"] }
ash-window = { path = "../ash-window" }