Skip to content

Commit 7f19958

Browse files
committed
update shader crate template
1 parent b75274a commit 7f19958

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: "6a67e7b5954f37989ad540a555b5d6969073592e".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+6a67e7b5", &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=6a67e7b5954f37989ad540a555b5d6969073592e#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 = "6a67e7b5954f37989ad540a555b5d6969073592e" }
1616
glam = { version = "0.30.8", default-features = false }
1717

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

0 commit comments

Comments
 (0)