mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-22 14:56:42 +00:00
1e9128795f
* Use workspace dependencies * Update CI workflow to account for the two workspaces * Make the tables in the root workspace a bit nicer to look at * Use workspace package version * Remove workspace package version * Make winit a workspace dependency as well
18 lines
378 B
TOML
18 lines
378 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 = { workspace = true }
|
|
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" }
|