-
Notifications
You must be signed in to change notification settings - Fork 441
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use workspace dependencies * Update CI workflow to account for the two workspaces * Make the tables in the root workspace a bit nicer to look at * Use workspace package version * Remove workspace package version * Make winit a workspace dependency as well
- Loading branch information
Showing
45 changed files
with
240 additions
and
164 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,58 @@ | ||
[workspace] | ||
members = [ | ||
"examples/*", | ||
"vulkano", | ||
"vulkano-macros", | ||
"vulkano-shaders", | ||
"vulkano-util", | ||
"vulkano-win", | ||
] | ||
resolver = "2" | ||
|
||
[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" | ||
cgmath = "0.18" | ||
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" | ||
nalgebra = "0.32" | ||
parking_lot = "0.12" | ||
proc-macro2 = "1.0" | ||
proc-macro-crate = "1.2" | ||
quote = "1.0" | ||
raw-window-handle = "0.5" | ||
regex = "1.8" | ||
serde = "1.0" | ||
serde_json = "1.0" | ||
shaderc = "0.8" | ||
smallvec = "1.8" | ||
syn = "1.0" | ||
thread_local = "1.1" | ||
vk-parse = "0.12" | ||
winit = "0.28" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[workspace] | ||
members = ["*"] | ||
resolver = "2" | ||
|
||
[workspace.dependencies] | ||
cgmath = "0.18" | ||
png = "0.17" | ||
rand = "0.8" | ||
ron = "0.8" | ||
serde = "1.0" | ||
vulkano = { path = "../vulkano" } | ||
vulkano-macros = { path = "../vulkano-macros" } | ||
vulkano-shaders = { path = "../vulkano-shaders" } | ||
vulkano-util = { path = "../vulkano-util" } | ||
winit = "0.28" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.