Skip to content

Commit 7005dff

Browse files
authored
cargo: Update ash to 0.36 (with Vulkan 1.3) (#100)
This is also the first breaking `ash` release that doesn't require an `ash-window` breaking bump anymore, since it's now range-compatible. We set the minimum version to 0.9.1 to force using this range-compatible version though, to ensure users with `-Zminimal-versions` or when `cargo update` is skipped don't see type breakage.
1 parent 3b387d3 commit 7005dff

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ log = "0.4"
2323
thiserror = "1.0"
2424
# Only needed for vulkan. Disable all default features as good practice,
2525
# such as the ability to link/load a Vulkan library.
26-
ash = { version = "0.35", optional = true, default-features = false, features = ["debug"] }
26+
ash = { version = "0.36", optional = true, default-features = false, features = ["debug"] }
2727
# Only needed for visualizer.
2828
imgui = { version = "0.8", optional = true }
2929

@@ -33,8 +33,8 @@ winapi = { version = "0.3.9", features = ["d3d12", "winerror", "impl-default", "
3333

3434
[dev-dependencies]
3535
# Enable the "loaded" feature to be able to access the Vulkan entrypoint.
36-
ash = { version = "0.35", default-features = false, features = ["debug", "loaded"] }
37-
ash-window = "0.9"
36+
ash = { version = "0.36", default-features = false, features = ["debug", "loaded"] }
37+
ash-window = "0.9.1"
3838
raw-window-handle = "0.4"
3939
winit = "0.26"
4040
imgui-winit-support = { version = "0.8", default-features = false, features = ["winit-26"] }

0 commit comments

Comments
 (0)