Skip to content

Commit 293e95f

Browse files
authored
Remove embark from urls (#2)
1 parent 2aa86e5 commit 293e95f

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.cargo/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ rustflags = [
7777
"-Wnonstandard_style",
7878
"-Wrust_2018_idioms",
7979
# END - Embark standard lints v6 for Rust 1.55+
80-
]
80+
]

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ workspace = { members = ["tools/package", "tools/install"] }
33
[package]
44
name = "spirv-tools"
55
description = "Wrapper crate for SPIRV-Tools"
6-
repository = "https://github.com/EmbarkStudios/spirv-tools-rs"
6+
repository = "https://github.com/rust-gpu/spirv-tools-rs"
77
version = "0.10.0"
88
authors = ["Embark <[email protected]>"]
99
edition = "2021"
1010
license = "MIT OR Apache-2.0"
1111
readme = "README.md"
1212
documentation = "https://docs.rs/spirv-tools"
13-
homepage = "https://github.com/EmbarkStudios/spirv-tools-rs"
13+
homepage = "https://github.com/rust-gpu/spirv-tools-rs"
1414
keywords = ["spir-v", "rust-gpu"]
1515
categories = ["rendering::data-formats"]
1616
exclude = [".github", "release.toml"]

release.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ pre-release-replacements = [
66
{ file = "CHANGELOG.md", search = "\\.\\.\\.HEAD", replace = "...{{tag_name}}" },
77
{ file = "CHANGELOG.md", search = "ReleaseDate", replace = "{{date}}" },
88
{ file = "CHANGELOG.md", search = "<!-- next-header -->", replace = "<!-- next-header -->\n## [Unreleased] - ReleaseDate" },
9-
{ file = "CHANGELOG.md", search = "<!-- next-url -->", replace = "<!-- next-url -->\n[Unreleased]: https://github.com/EmbarkStudios/spirv-tools-rs/compare/{{tag_name}}...HEAD" },
9+
{ file = "CHANGELOG.md", search = "<!-- next-url -->", replace = "<!-- next-url -->\n[Unreleased]: https://github.com/rust-gpu/spirv-tools-rs/compare/{{tag_name}}...HEAD" },
1010
]

spirv-tools-sys/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "spirv-tools-sys"
33
description = "Wrapper crate for SPIRV-Tools"
4-
repository = "https://github.com/EmbarkStudios/spirv-tools-rs"
4+
repository = "https://github.com/rust-gpu/spirv-tools-rs"
55
version = "0.8.0"
66
authors = ["Embark <[email protected]>"]
77
edition = "2021"
88
# This is the same license for the underlying SPIRV-Tools code
99
license = "Apache-2.0"
1010
documentation = "https://docs.rs/spirv-tools-sys"
1111
readme = "README.md"
12-
homepage = "https://github.com/EmbarkStudios/spirv-tools-rs"
12+
homepage = "https://github.com/rust-gpu/spirv-tools-rs"
1313
keywords = ["spir-v", "rust-gpu"]
1414
categories = ["rendering::data-formats"]
1515
build = "build.rs"

tools/install/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ fn main() {
3636
let _s = Group::new(&format!("downloading {triple} tarball"));
3737
let mut cmd = Command::new("curl");
3838
cmd.args(["-f", "-L"])
39-
.arg(format!("https://github.com/EmbarkStudios/spirv-tools-rs/releases/download/{release}/{triple}.tar.zst"))
39+
.arg(format!("https://github.com/rust-gpu/spirv-tools-rs/releases/download/{release}/{triple}.tar.zst"))
4040
.stdout(std::process::Stdio::piped());
4141

4242
let output = cmd

0 commit comments

Comments
 (0)