-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Specified exact versioning for crates within rust-gpu * Fixed spirv-std referring to an older version of spirv-std-macros
- Loading branch information
Showing
9 changed files
with
26 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "rustc_codegen_spirv-types" | ||
description = "SPIR-V backend types shared between rustc_codegen_spirv and spirv-builder" | ||
version = "0.4.0-alpha.16" | ||
version = "0.4.0-alpha.17" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rustc_codegen_spirv" | ||
version = "0.4.0-alpha.16" | ||
version = "0.4.0-alpha.17" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -59,7 +59,7 @@ serde = { version = "1.0", features = ["derive"] } | |
serde_json = "1.0" | ||
smallvec = { version = "1.6.1", features = ["union"] } | ||
spirv-tools = { version = "0.9", default-features = false } | ||
rustc_codegen_spirv-types = { path = "../rustc_codegen_spirv-types", version = "0.4.0-alpha.16" } | ||
rustc_codegen_spirv-types = { path = "../rustc_codegen_spirv-types", version = "=0.4.0-alpha.17" } | ||
|
||
[dev-dependencies] | ||
pipe = "0.4" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "spirv-builder" | ||
version = "0.4.0-alpha.16" | ||
version = "0.4.0-alpha.17" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -20,8 +20,8 @@ memchr = "2.4" | |
raw-string = "0.3.5" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
rustc_codegen_spirv-types = { path = "../rustc_codegen_spirv-types", version = "0.4.0-alpha.16" } | ||
rustc_codegen_spirv-types = { path = "../rustc_codegen_spirv-types", version = "=0.4.0-alpha.17" } | ||
# See comment in lib.rs invoke_rustc for why this is here | ||
rustc_codegen_spirv = { path = "../rustc_codegen_spirv", version = "0.4.0-alpha.16", default-features = false } | ||
rustc_codegen_spirv = { path = "../rustc_codegen_spirv", version = "=0.4.0-alpha.17", default-features = false } | ||
|
||
notify = { version = "5.0.0-pre.11", optional = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "spirv-std" | ||
version = "0.4.0-alpha.16" | ||
version = "0.4.0-alpha.17" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -10,8 +10,8 @@ description = "Standard functions and types for SPIR-V" | |
[dependencies] | ||
bitflags = "1.2.1" | ||
num-traits = { version = "0.2.14", default-features = false, features = ["libm"] } | ||
spirv-std-types = { path = "./shared", version = "0.4.0-alpha.16" } | ||
spirv-std-macros = { path = "./macros", version = "0.4.0-alpha.13" } | ||
spirv-std-types = { path = "./shared", version = "=0.4.0-alpha.17" } | ||
spirv-std-macros = { path = "./macros", version = "=0.4.0-alpha.17" } | ||
glam = { version = "0.22", default-features = false, features = ["libm"], optional = true } | ||
|
||
[features] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "spirv-std-macros" | ||
version = "0.4.0-alpha.16" | ||
version = "0.4.0-alpha.17" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -11,7 +11,7 @@ description = "Macros for spirv-std" | |
proc-macro = true | ||
|
||
[dependencies] | ||
spirv-std-types = { path = "../shared", version = "0.4.0-alpha.16" } | ||
spirv-std-types = { path = "../shared", version = "=0.4.0-alpha.17" } | ||
proc-macro2 = "1.0.24" | ||
quote = "1.0.8" | ||
syn = { version = "1.0.58", features=["full"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "spirv-std-types" | ||
description = "SPIR-V types shared between spirv-std and spirv-std-macros" | ||
version = "0.4.0-alpha.16" | ||
version = "0.4.0-alpha.17" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters