Skip to content
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,4 @@ rustflags = [
"-Wnonstandard_style",
"-Wrust_2018_idioms",
# END - Embark standard lints v6 for Rust 1.55+
]
]
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ workspace = { members = ["tools/package", "tools/install"] }
[package]
name = "spirv-tools"
description = "Wrapper crate for SPIRV-Tools"
repository = "https://github.com/EmbarkStudios/spirv-tools-rs"
repository = "https://github.com/rust-gpu/spirv-tools-rs"
version = "0.10.0"
authors = ["Embark <opensource@embark-studios.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/spirv-tools"
homepage = "https://github.com/EmbarkStudios/spirv-tools-rs"
homepage = "https://github.com/rust-gpu/spirv-tools-rs"
keywords = ["spir-v", "rust-gpu"]
categories = ["rendering::data-formats"]
exclude = [".github", "release.toml"]
Expand Down
2 changes: 1 addition & 1 deletion release.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ pre-release-replacements = [
{ file = "CHANGELOG.md", search = "\\.\\.\\.HEAD", replace = "...{{tag_name}}" },
{ file = "CHANGELOG.md", search = "ReleaseDate", replace = "{{date}}" },
{ file = "CHANGELOG.md", search = "<!-- next-header -->", replace = "<!-- next-header -->\n## [Unreleased] - ReleaseDate" },
{ file = "CHANGELOG.md", search = "<!-- next-url -->", replace = "<!-- next-url -->\n[Unreleased]: https://github.com/EmbarkStudios/spirv-tools-rs/compare/{{tag_name}}...HEAD" },
{ file = "CHANGELOG.md", search = "<!-- next-url -->", replace = "<!-- next-url -->\n[Unreleased]: https://github.com/rust-gpu/spirv-tools-rs/compare/{{tag_name}}...HEAD" },
]
4 changes: 2 additions & 2 deletions spirv-tools-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "spirv-tools-sys"
description = "Wrapper crate for SPIRV-Tools"
repository = "https://github.com/EmbarkStudios/spirv-tools-rs"
repository = "https://github.com/rust-gpu/spirv-tools-rs"
version = "0.8.0"
authors = ["Embark <opensource@embark-studios.com>"]
edition = "2021"
# This is the same license for the underlying SPIRV-Tools code
license = "Apache-2.0"
documentation = "https://docs.rs/spirv-tools-sys"
readme = "README.md"
homepage = "https://github.com/EmbarkStudios/spirv-tools-rs"
homepage = "https://github.com/rust-gpu/spirv-tools-rs"
keywords = ["spir-v", "rust-gpu"]
categories = ["rendering::data-formats"]
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion tools/install/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fn main() {
let _s = Group::new(&format!("downloading {triple} tarball"));
let mut cmd = Command::new("curl");
cmd.args(["-f", "-L"])
.arg(format!("https://github.com/EmbarkStudios/spirv-tools-rs/releases/download/{release}/{triple}.tar.zst"))
.arg(format!("https://github.com/rust-gpu/spirv-tools-rs/releases/download/{release}/{triple}.tar.zst"))
.stdout(std::process::Stdio::piped());

let output = cmd
Expand Down
Loading