[big refactor] Remove crate aliasing. (#4395)

* Rename: Phase 1.

* Unify codec.

* Fixing: Phase 2

* Fixing: Phase 3.

* Fixing: Phase 4.

* Fixing: Phase 5.

* Fixing: Phase 6.

* Fixing: Phase 7.

* Fixing: Phase 8. Tests

* Fixing: Phase 9. Tests!!!

* Fixing: Phase 10. Moar tests!

* Finally done!

* More fixes.

* Rename primitives:: to sp_core::

* Apply renames in finality-grandpa.

* Fix benches.

* Fix benches 2.

* Revert node-template.

* Fix frame-system in our modules.
This commit is contained in:
Tomasz Drwięga
2019-12-16 13:36:49 +01:00
committed by Gavin Wood
parent f14d98a439
commit 8778ca7dc8
485 changed files with 4023 additions and 4005 deletions
+10 -10
View File
@@ -20,22 +20,22 @@ codec = { package = "parity-scale-codec", version = "1.0.0" }
trie-root = "0.15.2"
sp-io = { path = "../../primitives/io" }
sc-cli = { path = "../../client/cli" }
primitives = { package = "sp-core", path = "../../primitives/core" }
sp-core = { path = "../../primitives/core" }
sc-executor = { path = "../../client/executor" }
sc-service = { path = "../../client/service" }
inherents = { package = "sp-inherents", path = "../../primitives/inherents" }
txpool = { package = "sc-transaction-pool", path = "../../client/transaction-pool" }
txpool-api = { package = "sp-transaction-pool", path = "../../primitives/transaction-pool" }
network = { package = "sc-network", path = "../../client/network" }
aura = { package = "sc-consensus-aura", path = "../../client/consensus/aura" }
aura-primitives = { package = "sp-consensus-aura", path = "../../primitives/consensus/aura" }
consensus-common = { package = "sp-consensus", path = "../../primitives/consensus/common" }
sp-inherents = { path = "../../primitives/inherents" }
sc-transaction-pool = { path = "../../client/transaction-pool" }
sp-transaction-pool = { path = "../../primitives/transaction-pool" }
sc-network = { path = "../../client/network" }
sc-consensus-aura = { path = "../../client/consensus/aura" }
sp-consensus-aura = { path = "../../primitives/consensus/aura" }
sp-consensus = { path = "../../primitives/consensus/common" }
grandpa = { package = "sc-finality-grandpa", path = "../../client/finality-grandpa" }
grandpa-primitives = { package = "sp-finality-grandpa", path = "../../primitives/finality-grandpa" }
sc-client = { path = "../../client/" }
runtime = { package = "node-template-runtime", path = "runtime" }
node-template-runtime = { path = "runtime" }
sp-runtime = { path = "../../primitives/runtime" }
basic-authorship = { package = "sc-basic-authority", path = "../../client/basic-authorship"}
sc-basic-authority = { path = "../../client/basic-authorship"}
[build-dependencies]
vergen = "3.0.4"