[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
+8 -8
View File
@@ -7,16 +7,16 @@ edition = "2018"
[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
primitives = { package = "sp-core", path = "../core", default-features = false }
app-crypto = { package = "sp-application-crypto", path = "../application-crypto", default-features = false }
arithmetic = { package = "sp-arithmetic", path = "../arithmetic", default-features = false }
sp-core = { path = "../core", default-features = false }
sp-application-crypto = { path = "../application-crypto", default-features = false }
sp-arithmetic = { path = "../arithmetic", default-features = false }
sp-std = { path = "../std", default-features = false }
sp-io = { path = "../io", default-features = false }
log = { version = "0.4.8", optional = true }
paste = "0.1.6"
rand = { version = "0.7.2", optional = true }
impl-trait-for-tuples = "0.1.3"
inherents = { package = "sp-inherents", path = "../inherents", default-features = false }
sp-inherents = { path = "../inherents", default-features = false }
[dev-dependencies]
serde_json = "1.0.41"
@@ -26,14 +26,14 @@ rand = "0.7.2"
bench = []
default = ["std"]
std = [
"app-crypto/std",
"arithmetic/std",
"sp-application-crypto/std",
"sp-arithmetic/std",
"codec/std",
"log",
"primitives/std",
"sp-core/std",
"rand",
"sp-std/std",
"sp-io/std",
"serde",
"inherents/std",
"sp-inherents/std",
]