Remove duplicated dependencies (#6930)

Signed-off-by: koushiro <koushiro.cqx@gmail.com>
This commit is contained in:
Qinxuan Chen
2020-08-21 22:25:58 +08:00
committed by GitHub
parent 69e349bd51
commit 8ae1695526
20 changed files with 81 additions and 194 deletions
+6 -6
View File
@@ -15,18 +15,18 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false, features = ["derive"] }
sp-consensus = { version = "0.8.0-rc6", path = "../../primitives/consensus/common" }
derive_more = { version = "0.99.2" }
derive_more = "0.99.2"
sc-executor = { version = "0.8.0-rc6", path = "../executor" }
sp-externalities = { version = "0.8.0-rc6", path = "../../primitives/externalities" }
fnv = { version = "1.0.6" }
futures = { version = "0.3.1" }
fnv = "1.0.6"
futures = "0.3.1"
hash-db = { version = "0.15.2", default-features = false }
sp-blockchain = { version = "2.0.0-rc6", path = "../../primitives/blockchain" }
hex-literal = { version = "0.2.1" }
hex-literal = "0.3.1"
sp-inherents = { version = "2.0.0-rc6", default-features = false, path = "../../primitives/inherents" }
sp-keyring = { version = "2.0.0-rc6", path = "../../primitives/keyring" }
kvdb = "0.7.0"
log = { version = "0.4.8" }
log = "0.4.8"
parking_lot = "0.10.0"
lazy_static = "1.4.0"
sp-database = { version = "2.0.0-rc6", path = "../../primitives/database" }
@@ -44,6 +44,6 @@ sp-transaction-pool = { version = "2.0.0-rc6", path = "../../primitives/transact
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.8.0-rc6", path = "../../utils/prometheus" }
[dev-dependencies]
kvdb-memorydb = "0.6.0"
kvdb-memorydb = "0.7.0"
sp-test-primitives = { version = "2.0.0-rc6", path = "../../primitives/test-primitives" }
substrate-test-runtime = { version = "2.0.0-rc6", path = "../../test-utils/runtime" }