delete primitives in Cargo in primitives (#7751)

This commit is contained in:
honeywest
2020-12-18 01:11:07 +08:00
committed by GitHub
parent 0964dab906
commit 570a4a81d6
8 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ sp-core = { version = "2.0.0", default-features = false, path = "../core" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../runtime" }
sp-version = { version = "2.0.0", default-features = false, path = "../version" }
sp-state-machine = { version = "0.8.0", optional = true, path = "../../primitives/state-machine" }
sp-state-machine = { version = "0.8.0", optional = true, path = "../state-machine" }
hash-db = { version = "0.15.2", optional = true }
thiserror = { version = "1.0.21", optional = true }
+2 -2
View File
@@ -17,10 +17,10 @@ substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils
sp-version = { version = "2.0.0", path = "../../version" }
sp-runtime = { version = "2.0.0", path = "../../runtime" }
sp-blockchain = { version = "2.0.0", path = "../../blockchain" }
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
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 = "../../../primitives/state-machine" }
sp-state-machine = { version = "0.8.0", path = "../../state-machine" }
trybuild = { git = "https://github.com/bkchr/trybuild.git", branch = "bkchr-use-workspace-cargo-lock" }
rustversion = "1.0.0"