Skip to content
This repository was archived by the owner on Apr 10, 2026. It is now read-only.

Commit 640e9a5

Browse files
committed
WIP update shader crate template
1 parent f7b99b1 commit 640e9a5

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

crates/cargo-gpu-install/src/spirv_source.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ mod test {
276276
source,
277277
SpirvSource::Git {
278278
url: "https://github.com/Rust-GPU/rust-gpu".to_owned(),
279-
rev: "2aa4d4f8a8ba73103501562cfca17b8163e5a887".to_owned()
279+
rev: "cb8632c3006a8eaa95621c2df55eb60e04705cc6".to_owned()
280280
}
281281
);
282282
}
@@ -299,13 +299,13 @@ mod test {
299299
.to_str()
300300
.map(std::string::ToString::to_string)
301301
.unwrap();
302-
assert_eq!("https___github_com_Rust-GPU_rust-gpu+2aa4d4f8", &name);
302+
assert_eq!("https___github_com_Rust-GPU_rust-gpu+cb8632c3", &name);
303303
}
304304

305305
#[test_log::test]
306306
fn parse_git_with_rev() {
307307
let source = parse_git(
308-
"git+https://github.com/Rust-GPU/rust-gpu?rev=86fc48032c4cd4afb74f1d81ae859711d20386a1#86fc4803",
308+
"git+https://github.com/Rust-GPU/rust-gpu?rev=cb8632c3006a8eaa95621c2df55eb60e04705cc6#86fc4803",
309309
);
310310
assert_eq!(
311311
source,

crates/shader-crate-template/Cargo.lock

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

crates/shader-crate-template/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ unexpected_cfgs = { level = "allow", check-cfg = ['cfg(target_arch, values("spir
1212
# Dependencies for CPU and GPU code
1313
[dependencies]
1414
# TODO: use a simple crate version once v0.10.0 is released
15-
spirv-std = { git = "https://github.com/Rust-GPU/rust-gpu", rev = "2aa4d4f8a8ba73103501562cfca17b8163e5a887" }
15+
spirv-std = { git = "https://github.com/Rust-GPU/rust-gpu", rev = "cb8632c3006a8eaa95621c2df55eb60e04705cc6" }
1616
glam = { version = "0.30.8", default-features = false }
1717

1818
[package.metadata.rust-gpu.build]

0 commit comments

Comments
 (0)