diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:20 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:20 +0100 |
commit | b31035bf03e0843fb516bee065f9a010424ba546 (patch) | |
tree | b98e55478f47da33e6f1faa994da6b91b97b9ad2 /stockton-render/Cargo.toml | |
parent | a748e4c3e3615601ee2afe6d347ef439d8ff50fa (diff) |
refactor(render): update gfx-hal and use staging and index buffers.
also some minor changes to types because of deprecation
and a bunch of readability improvements
Diffstat (limited to 'stockton-render/Cargo.toml')
-rw-r--r-- | stockton-render/Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/stockton-render/Cargo.toml b/stockton-render/Cargo.toml index eb717c4..d207159 100644 --- a/stockton-render/Cargo.toml +++ b/stockton-render/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Oscar <oscar.shrimpton.personal@gmail.com>"] [dependencies] stockton-types = { path = "../stockton-types" } -winit = "0.19.1" +winit = "^0.21" gfx-hal = "^0.5" arrayvec = "0.4.10" nalgebra-glm = "0.4.0" @@ -18,4 +18,5 @@ vulkan = ["gfx-backend-vulkan"] [dependencies.gfx-backend-vulkan] version = "^0.5" +features = ["x11"] optional = true |