mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-22 14:56:42 +00:00
4c515a81cb
* Make each example its own workspace member * Fix runtime-shader example * Fix shader-include example * Fix teapot example * Fix `run_all.sh` * Fix output files getting saved in cwd * Fix spelling for examples readme filename * Remove wrong leftover dependencies for gl-interop * Fix pipeline-cache example * Clearer .gitignore * Help cargo be less useless
18 lines
384 B
TOML
18 lines
384 B
TOML
[package]
|
|
name = "gl-interop"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "gl-interop"
|
|
path = "main.rs"
|
|
|
|
[dependencies]
|
|
glium = "0.32.1"
|
|
vulkano = { path = "../../vulkano" }
|
|
vulkano-shaders = { path = "../../vulkano-shaders" }
|
|
winit = "0.28"
|
|
# Glium has still not been updated to the latest winit version
|
|
winit_glium = { package = "winit", version = "0.27.1" }
|