Skip to content

Commit 5b57080

Browse files
committed
switch to cargo-gpu-install crate
1 parent eb498b6 commit 5b57080

13 files changed

Lines changed: 27 additions & 283 deletions

File tree

Cargo.lock

Lines changed: 11 additions & 267 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ wgpu = { version = "29.0.1", default-features = false, features = ["std", "parki
2222
pollster = "0.4.0"
2323

2424
# rust-gpu
25-
cargo-gpu = { git = "https://github.com/Rust-GPU/rust-gpu", rev = "8494942c0be705049514c2515761da7ef24fcbeb" }
25+
cargo-gpu-install = { git = "https://github.com/Rust-GPU/rust-gpu", rev = "8494942c0be705049514c2515761da7ef24fcbeb" }
2626
spirv-std = { git = "https://github.com/Rust-GPU/rust-gpu", rev = "8494942c0be705049514c2515761da7ef24fcbeb" }
2727

2828
# other

generated/graphics/ash/cargo-gpu/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ gpu-allocator = { version = "0.28.0", default-features = false, features = ["std
2323

2424
# rust-gpu
2525
# While `cargo-gpu` is backwards compatible with older rust-gpu versions, easiest is to just match the versions exactly.
26-
cargo-gpu = { git = "https://github.com/Rust-GPU/rust-gpu", rev = "8494942c0be705049514c2515761da7ef24fcbeb" }
26+
cargo-gpu-install = { git = "https://github.com/Rust-GPU/rust-gpu", rev = "8494942c0be705049514c2515761da7ef24fcbeb" }
2727
spirv-std = { git = "https://github.com/Rust-GPU/rust-gpu", rev = "8494942c0be705049514c2515761da7ef24fcbeb" }
2828

2929
# other

generated/graphics/ash/cargo-gpu/mygraphics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ bytemuck.workspace = true
2727

2828
[build-dependencies]
2929
# rust-gpu
30-
cargo-gpu.workspace = true
30+
cargo-gpu-install.workspace = true
3131

3232
# other
3333
anyhow.workspace = true

generated/graphics/ash/cargo-gpu/mygraphics/build.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
use cargo_gpu::install::Install;
2-
use cargo_gpu::spirv_builder::{ShaderPanicStrategy, SpirvMetadata};
1+
use cargo_gpu_install::install::Install;
2+
use cargo_gpu_install::spirv_builder::{ShaderPanicStrategy, SpirvMetadata};
33
use std::path::PathBuf;
44

55
pub fn main() -> anyhow::Result<()> {

generated/graphics/wgpu/cargo-gpu/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ pollster = "0.4.0"
2222

2323
# rust-gpu
2424
# While `cargo-gpu` is backwards compatible with older rust-gpu versions, easiest is to just match the versions exactly.
25-
cargo-gpu = { git = "https://github.com/Rust-GPU/rust-gpu", rev = "8494942c0be705049514c2515761da7ef24fcbeb" }
25+
cargo-gpu-install = { git = "https://github.com/Rust-GPU/rust-gpu", rev = "8494942c0be705049514c2515761da7ef24fcbeb" }
2626
spirv-std = { git = "https://github.com/Rust-GPU/rust-gpu", rev = "8494942c0be705049514c2515761da7ef24fcbeb" }
2727

2828
# other

generated/graphics/wgpu/cargo-gpu/mygraphics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ bytemuck.workspace = true
2727

2828
[build-dependencies]
2929
# rust-gpu
30-
cargo-gpu.workspace = true
30+
cargo-gpu-install.workspace = true
3131

3232
# other
3333
anyhow.workspace = true

generated/graphics/wgpu/cargo-gpu/mygraphics/build.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
use cargo_gpu::install::Install;
2-
use cargo_gpu::spirv_builder::{ShaderPanicStrategy, SpirvMetadata};
1+
use cargo_gpu_install::install::Install;
2+
use cargo_gpu_install::spirv_builder::{ShaderPanicStrategy, SpirvMetadata};
33
use std::path::PathBuf;
44

55
pub fn main() -> anyhow::Result<()> {

graphics/Cargo.toml.liquid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ spirv-builder = { git = "https://github.com/Rust-GPU/rust-gpu", rev = "8494942c0
3434
{% endif -%}
3535
{% if integration == "cargo-gpu" -%}
3636
# While `cargo-gpu` is backwards compatible with older rust-gpu versions, easiest is to just match the versions exactly.
37-
cargo-gpu = { git = "https://github.com/Rust-GPU/rust-gpu", rev = "8494942c0be705049514c2515761da7ef24fcbeb" }
37+
cargo-gpu-install = { git = "https://github.com/Rust-GPU/rust-gpu", rev = "8494942c0be705049514c2515761da7ef24fcbeb" }
3838
{% endif -%}
3939
spirv-std = { git = "https://github.com/Rust-GPU/rust-gpu", rev = "8494942c0be705049514c2515761da7ef24fcbeb" }
4040

graphics/mygraphics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ bytemuck.workspace = true
3030

3131
[build-dependencies]
3232
# rust-gpu
33-
cargo-gpu.workspace = true
33+
cargo-gpu-install.workspace = true
3434

3535
# other
3636
anyhow.workspace = true

0 commit comments

Comments
 (0)