56d8507acb
* ash/util: fix `clippy::seek_to_start_instead_of_rewind` * examples: fix `clippy::uninlined_format_args` * ash: fix `clippy::uninlined_format_args` * generator: fix `clippy::uninlined_format_args` * rust: upgrade to edition 2021
16 lines
514 B
TOML
16 lines
514 B
TOML
[package]
|
|
name = "examples"
|
|
version = "0.1.0"
|
|
authors = ["maik klein <maikklein@googlemail.com>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
image = "0.24"
|
|
raw-window-handle = "0.5"
|
|
winit = "0.27.1"
|
|
# 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" }
|