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
+3 -3
View File
@@ -21,10 +21,10 @@ sp-core = { version = "2.0.0", default-features = false, path = "../core" }
sp-keystore = { version = "0.8.0", default-features = false, optional = true, path = "../keystore" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
libsecp256k1 = { version = "0.3.4", optional = true }
sp-state-machine = { version = "0.8.0", optional = true, path = "../../primitives/state-machine" }
sp-wasm-interface = { version = "2.0.0", path = "../../primitives/wasm-interface", default-features = false }
sp-state-machine = { version = "0.8.0", optional = true, path = "../state-machine" }
sp-wasm-interface = { version = "2.0.0", path = "../wasm-interface", default-features = false }
sp-runtime-interface = { version = "2.0.0", default-features = false, path = "../runtime-interface" }
sp-trie = { version = "2.0.0", optional = true, path = "../../primitives/trie" }
sp-trie = { version = "2.0.0", optional = true, path = "../trie" }
sp-externalities = { version = "0.8.0", optional = true, path = "../externalities" }
sp-tracing = { version = "2.0.0", default-features = false, path = "../tracing" }
log = { version = "0.4.8", optional = true }