From 331724c216b62d2914479d44e16c977e685e0749 Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Wed, 15 May 2024 15:46:27 +0200 Subject: [PATCH] TEMP: Take a git reference on `vk-parse` for the upcoming `vk.xml` `` attribute (#918) Without a `vk-parse` change, adding `type="constants"` to `` in `vk.xml` will cause all our constants to be lost. Use the patched crate until it's merged and released upstream, to unblock the proposed `vk.xml` change. https://togithub.com/krolli/vk-parse/pull/32 https://togithub.com/KhronosGroup/Vulkan-Docs/pull/2366 --- Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 17b22f707..b63e0f4c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,3 +9,8 @@ members = [ "generator", "generator-rewrite", ] + +[patch.crates-io] +# https://github.com/krolli/vk-parse/pull/32 +# https://togithub.com/KhronosGroup/Vulkan-Docs/pull/2366 +vk-parse = { git = "https://github.com/MarijnS95/vk-parse", rev = "97848b1" }