mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-22 06:45:23 +00:00
e68eddd5f1
* Add vulkano macros feature to example that needs it
* Add Buffer::pair_from_iter to make it one step easier for staging data to the device
* Revert "Add Buffer::pair_from_iter to make it one step easier for staging data to the device"
This reverts commit a30b5c0925
.
18 lines
311 B
TOML
18 lines
311 B
TOML
[package]
|
|
name = "triangle-v1_3"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "triangle-v1_3"
|
|
path = "main.rs"
|
|
test = false
|
|
bench = false
|
|
doc = false
|
|
|
|
[dependencies]
|
|
vulkano = { workspace = true, features = ["macros"] }
|
|
vulkano-shaders = { workspace = true }
|
|
winit = { workspace = true }
|