Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ jobs:
- name: Install Vulkan loader
run: sudo apt-get install libvulkan-dev
- uses: actions/checkout@v6
- name: Checkout submodule
# Manually update submodules with --checkout because they are configured with update=none and will be skipped otherwise
run: git submodule update --recursive --init --force --checkout
- name: Test all targets
run: cargo test --workspace --all-targets
- name: Test docs
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@
path = generator/Vulkan-Headers
url = https://github.com/KhronosGroup/Vulkan-Headers
update = none
[submodule "generator-rewrite/Vulkan-Headers"]
path = generator-rewrite/Vulkan-Headers
url = https://github.com/KhronosGroup/Vulkan-Headers.git
7 changes: 7 additions & 0 deletions analysis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,10 @@ version = "2.0.0"
edition = "2021"

[dependencies]
roxmltree = "0.21"
tracing = "0.1"
indexmap = "2"
derive_more = { version = "2", features = ["deref"] }

[dev-dependencies]
tracing-test = "0.2"
Loading
Loading