migrate rust-gpu from EmbarkStudios -> Rust-GPU project/namespace
This commit is contained in:
12
Cargo.lock
generated
12
Cargo.lock
generated
@@ -1747,7 +1747,7 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
||||
[[package]]
|
||||
name = "rustc_codegen_spirv"
|
||||
version = "0.4.0-alpha.15"
|
||||
source = "git+https://github.com/EmbarkStudios/rust-gpu#985007fc087bb9952106eb3015357bb019e7916a"
|
||||
source = "git+https://github.com/Rust-GPU/rust-gpu#985007fc087bb9952106eb3015357bb019e7916a"
|
||||
dependencies = [
|
||||
"ar",
|
||||
"bimap",
|
||||
@@ -1769,7 +1769,7 @@ dependencies = [
|
||||
[[package]]
|
||||
name = "rustc_codegen_spirv-types"
|
||||
version = "0.4.0-alpha.15"
|
||||
source = "git+https://github.com/EmbarkStudios/rust-gpu#985007fc087bb9952106eb3015357bb019e7916a"
|
||||
source = "git+https://github.com/Rust-GPU/rust-gpu#985007fc087bb9952106eb3015357bb019e7916a"
|
||||
dependencies = [
|
||||
"rspirv",
|
||||
"serde",
|
||||
@@ -1961,7 +1961,7 @@ dependencies = [
|
||||
[[package]]
|
||||
name = "spirv-builder"
|
||||
version = "0.4.0-alpha.15"
|
||||
source = "git+https://github.com/EmbarkStudios/rust-gpu#985007fc087bb9952106eb3015357bb019e7916a"
|
||||
source = "git+https://github.com/Rust-GPU/rust-gpu#985007fc087bb9952106eb3015357bb019e7916a"
|
||||
dependencies = [
|
||||
"memchr",
|
||||
"raw-string",
|
||||
@@ -1974,7 +1974,7 @@ dependencies = [
|
||||
[[package]]
|
||||
name = "spirv-std"
|
||||
version = "0.4.0-alpha.15"
|
||||
source = "git+https://github.com/EmbarkStudios/rust-gpu#985007fc087bb9952106eb3015357bb019e7916a"
|
||||
source = "git+https://github.com/Rust-GPU/rust-gpu#985007fc087bb9952106eb3015357bb019e7916a"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"glam",
|
||||
@@ -1986,7 +1986,7 @@ dependencies = [
|
||||
[[package]]
|
||||
name = "spirv-std-macros"
|
||||
version = "0.4.0-alpha.15"
|
||||
source = "git+https://github.com/EmbarkStudios/rust-gpu#985007fc087bb9952106eb3015357bb019e7916a"
|
||||
source = "git+https://github.com/Rust-GPU/rust-gpu#985007fc087bb9952106eb3015357bb019e7916a"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
@@ -1997,7 +1997,7 @@ dependencies = [
|
||||
[[package]]
|
||||
name = "spirv-std-types"
|
||||
version = "0.4.0-alpha.15"
|
||||
source = "git+https://github.com/EmbarkStudios/rust-gpu#985007fc087bb9952106eb3015357bb019e7916a"
|
||||
source = "git+https://github.com/Rust-GPU/rust-gpu#985007fc087bb9952106eb3015357bb019e7916a"
|
||||
|
||||
[[package]]
|
||||
name = "spirv-tools"
|
||||
|
@@ -37,9 +37,9 @@ wgpu = "0.12"
|
||||
# TODO: update to 0.13
|
||||
# wgpu = { version = "0.13", features = ["spirv", "vulkan-portability"] } # MIT or Apache 2.0
|
||||
# spirv-* is MIT or Apache 2.0
|
||||
spirv-builder = { git = "https://github.com/EmbarkStudios/rust-gpu", features = ["use-compiled-tools"] }
|
||||
spirv-std = { git = "https://github.com/EmbarkStudios/rust-gpu" }
|
||||
spirv-std-macros = { git = "https://github.com/EmbarkStudios/rust-gpu" }
|
||||
spirv-builder = { git = "https://github.com/Rust-GPU/rust-gpu", features = ["use-compiled-tools"] }
|
||||
spirv-std = { git = "https://github.com/Rust-GPU/rust-gpu" }
|
||||
spirv-std-macros = { git = "https://github.com/Rust-GPU/rust-gpu" }
|
||||
spirv_backend = { path = "../spirv_backend" }
|
||||
spirv_backend_runner = { path = "../spirv_backend_runner" }
|
||||
coremem_cross = { path = "../cross", features = ["iter", "fmt", "serde", "std"] }
|
||||
|
@@ -7,5 +7,5 @@ edition = "2021"
|
||||
crate-type = ["dylib", "lib"]
|
||||
|
||||
[dependencies]
|
||||
spirv-std = { git = "https://github.com/EmbarkStudios/rust-gpu", features = ["glam"] } # MIT or Apache 2.0
|
||||
spirv-std = { git = "https://github.com/Rust-GPU/rust-gpu", features = ["glam"] } # MIT or Apache 2.0
|
||||
coremem_cross = { path = "../cross" }
|
||||
|
@@ -5,7 +5,7 @@ authors = ["Colin <colin@uninsane.org>"]
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
spirv-builder = { git = "https://github.com/EmbarkStudios/rust-gpu", features = ["use-compiled-tools"] }
|
||||
spirv-builder = { git = "https://github.com/Rust-GPU/rust-gpu", features = ["use-compiled-tools"] }
|
||||
|
||||
# these deps are to satisfy internal rustc stuff, since spirv-builder links into rustc internals (HACK).
|
||||
# this needs to match the rustc lock file -- not just its Cargo.toml -- so we pin down to the patch level
|
||||
|
Reference in New Issue
Block a user