vulkano/examples/gl-interop/Cargo.toml
ilyas taouaou e68eddd5f1
Add vulkano macros feature to examples that needs it (#2408)
* 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.
2023-11-16 17:07:28 +01:00

21 lines
441 B
TOML

[package]
name = "gl-interop"
version = "0.0.0"
edition = "2021"
publish = false
[[bin]]
name = "gl-interop"
path = "main.rs"
test = false
bench = false
doc = false
[dependencies]
glium = "0.32.1"
vulkano = { workspace = true, features = ["macros"] }
vulkano-shaders = { workspace = true }
winit = { workspace = true }
# Glium has still not been updated to the latest winit version
winit_glium = { package = "winit", version = "0.27.1" }