Added some version tags to some crates referencing rustc_codegen_spirv (#894)

Although not really necessary, this removes some errors `cargo-release` is giving.
This commit is contained in:
Sylvester Hesp 2022-08-10 13:06:20 -07:00 committed by GitHub
parent ba947ced62
commit ef65808a5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -17,8 +17,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" }
rustc_codegen_spirv-types = { path = "../rustc_codegen_spirv-types", version = "0.4.0-alpha.12" }
# See comment in lib.rs invoke_rustc for why this is here
rustc_codegen_spirv = { path = "../rustc_codegen_spirv", default-features = false }
rustc_codegen_spirv = { path = "../rustc_codegen_spirv", version = "0.4.0-alpha.12", default-features = false }
notify = { version = "5.0.0-pre.11", optional = true }

View File

@ -14,5 +14,5 @@ use-compiled-tools = ["rustc_codegen_spirv/use-compiled-tools"]
[dependencies]
compiletest = { version = "0.7.0", package = "compiletest_rs" }
rustc_codegen_spirv = { path = "../crates/rustc_codegen_spirv", default-features = false }
rustc_codegen_spirv = { path = "../crates/rustc_codegen_spirv", version = "0.4.0-alpha.12", default-features = false }
structopt = "0.3.21"