2016-08-07 12:31:07 +00:00
|
|
|
[workspace]
|
2023-10-29 17:46:14 +00:00
|
|
|
members = [
|
2023-11-15 17:08:43 +00:00
|
|
|
"examples/*",
|
|
|
|
"vulkano",
|
|
|
|
"vulkano-macros",
|
|
|
|
"vulkano-shaders",
|
|
|
|
"vulkano-util",
|
|
|
|
# "vulkano-win",
|
2023-10-29 17:46:14 +00:00
|
|
|
]
|
2023-08-25 01:01:45 +00:00
|
|
|
resolver = "2"
|
2023-10-30 03:42:00 +00:00
|
|
|
|
|
|
|
[workspace.dependencies.vulkano]
|
|
|
|
version = "0.34"
|
|
|
|
path = "vulkano"
|
|
|
|
default-features = false
|
|
|
|
|
|
|
|
[workspace.dependencies.vulkano-macros]
|
|
|
|
version = "0.34"
|
|
|
|
path = "vulkano-macros"
|
|
|
|
|
|
|
|
[workspace.dependencies.vulkano-shaders]
|
|
|
|
version = "0.34"
|
|
|
|
path = "vulkano-shaders"
|
|
|
|
|
|
|
|
[workspace.dependencies.vulkano-util]
|
|
|
|
version = "0.34"
|
|
|
|
path = "vulkano-util"
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
|
|
|
ahash = "0.8"
|
|
|
|
# When updating Ash, also update vk.xml to the same Vulkan patch version that Ash uses.
|
|
|
|
# All versions of vk.xml can be found at:
|
|
|
|
# https://github.com/KhronosGroup/Vulkan-Headers/commits/main/registry/vk.xml
|
|
|
|
ash = "0.37.3"
|
|
|
|
bytemuck = "1.9"
|
|
|
|
core-graphics-types = "0.1"
|
|
|
|
crossbeam-queue = "0.3"
|
|
|
|
half = "2.0"
|
|
|
|
heck = "0.4"
|
|
|
|
indexmap = "2.0"
|
|
|
|
libloading = "0.8"
|
|
|
|
objc = "0.2.5"
|
|
|
|
once_cell = "1.17"
|
|
|
|
parking_lot = "0.12"
|
|
|
|
proc-macro2 = "1.0"
|
2023-11-01 19:59:57 +00:00
|
|
|
proc-macro-crate = "2.0"
|
2023-10-30 03:42:00 +00:00
|
|
|
quote = "1.0"
|
2023-10-31 17:47:17 +00:00
|
|
|
raw-window-handle = "0.6"
|
2023-10-30 03:42:00 +00:00
|
|
|
regex = "1.8"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
shaderc = "0.8"
|
|
|
|
smallvec = "1.8"
|
2023-10-31 17:47:17 +00:00
|
|
|
syn = "2.0"
|
2023-10-30 03:42:00 +00:00
|
|
|
thread_local = "1.1"
|
|
|
|
vk-parse = "0.12"
|
2023-10-31 17:47:17 +00:00
|
|
|
winit = "0.29"
|
2023-10-31 18:15:03 +00:00
|
|
|
|
|
|
|
# Only used in examples
|
|
|
|
cgmath = "0.18"
|
|
|
|
png = "0.17"
|
|
|
|
rand = "0.8"
|
|
|
|
ron = "0.8"
|
2024-01-10 08:26:35 +00:00
|
|
|
|
|
|
|
[profile.CI]
|
|
|
|
inherits = "dev"
|
|
|
|
debug = 0
|
|
|
|
codegen-units = 1
|
|
|
|
incremental = false
|