Switch back to the crates.io release of trybuild (#7764)

* Switch back to the crates.io release of trybuild

My fix was merged on upstream and this release contains it. So, no
more reason to keep the git dependency.

* The lock file...
This commit is contained in:
Bastian Köcher
2020-12-19 10:22:08 +01:00
committed by GitHub
parent 31099491bc
commit 5b61b7361c
5 changed files with 7 additions and 6 deletions
+3 -2
View File
@@ -9744,8 +9744,9 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
[[package]]
name = "trybuild"
version = "1.0.35"
source = "git+https://github.com/bkchr/trybuild.git?branch=bkchr-use-workspace-cargo-lock#0eaad05ba8a32a743751ff52b57a7d9f57da4869"
version = "1.0.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17b06f8610494cbeb9a7665b398306f0109ab8708296d7f24b0bcd89178bb350"
dependencies = [
"dissimilar",
"glob",
+1 -1
View File
@@ -21,7 +21,7 @@ sp-inherents = { version = "2.0.0", default-features = false, path = "../../../p
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../primitives/runtime" }
sp-core = { version = "2.0.0", default-features = false, path = "../../../primitives/core" }
sp-std = { version = "2.0.0", default-features = false, path = "../../../primitives/std" }
trybuild = { git = "https://github.com/bkchr/trybuild.git", branch = "bkchr-use-workspace-cargo-lock" }
trybuild = "1.0.38"
pretty_assertions = "0.6.1"
rustversion = "1.0.0"
frame-metadata = { version = "12.0.0", default-features = false, path = "../../metadata" }
+1 -1
View File
@@ -21,7 +21,7 @@ sp-consensus = { version = "0.8.0", path = "../../consensus/common" }
sc-block-builder = { version = "0.8.0", path = "../../../client/block-builder" }
codec = { package = "parity-scale-codec", version = "1.3.1" }
sp-state-machine = { version = "0.8.0", path = "../../state-machine" }
trybuild = { git = "https://github.com/bkchr/trybuild.git", branch = "bkchr-use-workspace-cargo-lock" }
trybuild = "1.0.38"
rustversion = "1.0.0"
[dev-dependencies]
@@ -31,7 +31,7 @@ sp-state-machine = { version = "0.8.0", path = "../state-machine" }
sp-core = { version = "2.0.0", path = "../core" }
sp-io = { version = "2.0.0", path = "../io" }
rustversion = "1.0.0"
trybuild = { git = "https://github.com/bkchr/trybuild.git", branch = "bkchr-use-workspace-cargo-lock" }
trybuild = "1.0.38"
[features]
default = [ "std" ]
+1 -1
View File
@@ -18,4 +18,4 @@ tokio = { version = "0.2.13", features = ["macros"] }
[dev-dependencies]
sc-service = { version = "0.8.0", path = "../client/service" }
trybuild = { git = "https://github.com/bkchr/trybuild.git", branch = "bkchr-use-workspace-cargo-lock", features = [ "diff" ] }
trybuild = { version = "1.0.38", features = [ "diff" ] }