Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Switch back to the crates.io release of trybuild (#7764)
Browse files Browse the repository at this point in the history
* 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...
  • Loading branch information
bkchr authored Dec 19, 2020
1 parent 94c34f3 commit 61cb65e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frame/support/test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion primitives/api/test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion primitives/runtime-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" ]
Expand Down
2 changes: 1 addition & 1 deletion test-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" ] }

0 comments on commit 61cb65e

Please sign in to comment.