Deduplicate vulkano dependency (#352)

This solves a downstream build issue in the Nixpkgs Rust tooling.

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu
2026-01-10 03:04:30 +01:00
committed by GitHub
parent 6cf4c1fe8f
commit 4a853fd79b
2 changed files with 8 additions and 35 deletions

37
Cargo.lock generated
View File

@@ -5837,7 +5837,7 @@ dependencies = [
"log",
"rust-embed",
"tracing-subscriber",
"vulkano 0.35.2 (git+https://github.com/galister/vulkano.git?rev=cf7f92867928a56ce16b376037c1120f2b167678)",
"vulkano",
"vulkano-shaders",
"wgui",
"winit",
@@ -5995,35 +5995,6 @@ dependencies = [
"xml-rs",
]
[[package]]
name = "vulkano"
version = "0.35.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee487adf7c13e5aa46d4d7fac6ffb8e172eb7e6472aaf815e9ade4992f8f2414"
dependencies = [
"ash",
"bytemuck",
"crossbeam-queue",
"foldhash 0.1.5",
"half",
"heck 0.4.1",
"indexmap 2.12.1",
"libloading 0.8.9",
"nom 7.1.3",
"once_cell",
"parking_lot",
"proc-macro2",
"quote",
"raw-window-handle",
"raw-window-metal",
"serde",
"serde_json",
"slabbin",
"smallvec",
"thread_local",
"vk-parse",
]
[[package]]
name = "vulkano"
version = "0.35.2"
@@ -6076,7 +6047,7 @@ dependencies = [
"quote",
"shaderc",
"syn 2.0.113",
"vulkano 0.35.2 (registry+https://github.com/rust-lang/crates.io-index)",
"vulkano",
]
[[package]]
@@ -6374,7 +6345,7 @@ dependencies = [
"tracing",
"tracing-subscriber",
"uuid",
"vulkano 0.35.2 (git+https://github.com/galister/vulkano.git?rev=cf7f92867928a56ce16b376037c1120f2b167678)",
"vulkano",
"vulkano-shaders",
"wayland-client",
"wayvr-ipc",
@@ -6466,7 +6437,7 @@ dependencies = [
"slotmap",
"smallvec",
"taffy",
"vulkano 0.35.2 (git+https://github.com/galister/vulkano.git?rev=cf7f92867928a56ce16b376037c1120f2b167678)",
"vulkano",
"vulkano-shaders",
]

View File

@@ -33,6 +33,9 @@ members = [
]
resolver = "3"
[patch.crates-io]
vulkano = { git = "https://github.com/galister/vulkano.git", rev = "cf7f92867928a56ce16b376037c1120f2b167678" }
[workspace.dependencies]
anyhow = "1.0.100"
glam = { version = "0.30.9", features = ["mint", "serde"] }
@@ -47,8 +50,7 @@ serde = { version = "1", features = ["derive"] }
serde_json = "1.0.145"
slotmap = "1.1.1"
strum = { version = "0.27.2", features = ["derive"] }
#vulkano = { version = "0.35.2", default-features = false, features = [
vulkano = { git = "https://github.com/galister/vulkano.git", rev = "cf7f92867928a56ce16b376037c1120f2b167678", default-features = false, features = [
vulkano = { version = "0.35.2", default-features = false, features = [
"macros",
] }
vulkano-shaders = "0.35.0"