diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:22 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:22 +0100 |
commit | d7d0f0277c437004ed476393542da39c84c5cf9f (patch) | |
tree | 65c369e00fc1416c74019fde4456b0bf90d3067c /stockton-render/Cargo.toml | |
parent | 10b3d4ac59e826b31d2114999e31893390acfb9c (diff) |
chore(render): update hal and fix some errors
Diffstat (limited to 'stockton-render/Cargo.toml')
-rw-r--r-- | stockton-render/Cargo.toml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/stockton-render/Cargo.toml b/stockton-render/Cargo.toml index 0348c60..ecb08f3 100644 --- a/stockton-render/Cargo.toml +++ b/stockton-render/Cargo.toml @@ -9,7 +9,7 @@ stockton-input = { path = "../stockton-input" } stockton-levels = { path = "../stockton-levels" } stockton-types = { path = "../stockton-types" } winit = "^0.21" -gfx-hal = "0.4.1" +gfx-hal = "^0.8.0" arrayvec = "0.4.10" nalgebra-glm = "^0.6" shaderc = "^0.7" @@ -17,8 +17,8 @@ log = "0.4.0" image = "0.23.11" legion = { version = "^0.3" } egui = "^0.2" -rendy-memory = "0.5.2" -rendy-descriptor = "0.5.1" +rendy-memory = { path = "../rendy-memory" } +rendy-descriptor = { path = "../rendy-descriptor" } anyhow = "1.0.40" thiserror = "1.0.25" @@ -27,6 +27,5 @@ default = ["vulkan"] vulkan = ["gfx-backend-vulkan"] [dependencies.gfx-backend-vulkan] -version = "0.4.1" -features = ["x11"] +version = "^0.8.0" optional = true |