Update compiletest to 0.7

This commit is contained in:
khyperia 2021-05-20 10:14:23 +02:00 committed by Eduard-Mihai Burtescu
parent e5a07a9e2b
commit 255a6f09e6
3 changed files with 4 additions and 7 deletions

5
Cargo.lock generated
View File

@ -362,8 +362,9 @@ dependencies = [
[[package]]
name = "compiletest_rs"
version = "0.6.0"
source = "git+https://github.com/Manishearth/compiletest-rs.git?rev=9257f6d#9257f6dd0a9687dd36897684ae18a124ac34016b"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64698e5e2435db061a85e6320af12c30c5fd88eb84b35d2c1e03ce4f143255ca"
dependencies = [
"diff",
"filetime",

View File

@ -38,7 +38,3 @@ codegen-units = 256
[patch.crates-io]
spirv-std = { path = "./crates/spirv-std" }
spirv-std-macros = { path = "./crates/spirv-std/macros" }
# TODO: Remove once next version is released - needed to include these two PRs:
# * Manishearth/compiletest-rs#240 (for handling SPIR-V extension across platforms)
# * Manishearth/compiletest-rs#241 (for the `$TEST_BUILD_DIR` path normalization)
compiletest_rs = { git = "https://github.com/Manishearth/compiletest-rs.git", rev = "9257f6d" }

View File

@ -13,6 +13,6 @@ use-installed-tools = ["rustc_codegen_spirv/use-installed-tools"]
use-compiled-tools = ["rustc_codegen_spirv/use-compiled-tools"]
[dependencies]
compiletest = { version = "0.6.0", package = "compiletest_rs" }
compiletest = { version = "0.7.0", package = "compiletest_rs" }
rustc_codegen_spirv = { path = "../crates/rustc_codegen_spirv", default-features = false }
structopt = "0.3.21"