vulkano/examples/basic-compute-shader/Cargo.toml
marc0246 4c515a81cb
Improve the examples' directory structure (#2375)
* 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
2023-10-29 18:46:14 +01:00

14 lines
253 B
TOML

[package]
name = "basic-compute-shader"
version = "0.0.0"
edition = "2021"
publish = false
[[bin]]
name = "basic-compute-shader"
path = "main.rs"
[dependencies]
vulkano = { path = "../../vulkano" }
vulkano-shaders = { path = "../../vulkano-shaders" }