mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-21 13:15:41 +00:00
[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:
committed by
Gavin Wood
parent
f14d98a439
commit
8778ca7dc8
@@ -8,7 +8,7 @@ edition = "2018"
|
||||
default = ["rocksdb"]
|
||||
# The RocksDB feature activates the RocksDB database backend. If it is not activated, and you pass
|
||||
# a path to a database, an error will be produced at runtime.
|
||||
rocksdb = ["client_db/kvdb-rocksdb"]
|
||||
rocksdb = ["sc-client-db/kvdb-rocksdb"]
|
||||
wasmtime = [
|
||||
"sc-executor/wasmtime",
|
||||
]
|
||||
@@ -28,36 +28,36 @@ serde = "1.0.101"
|
||||
serde_json = "1.0.41"
|
||||
sysinfo = "0.9.5"
|
||||
target_info = "0.1.0"
|
||||
keystore = { package = "sc-keystore", path = "../keystore" }
|
||||
sc-keystore = { path = "../keystore" }
|
||||
sp-io = { path = "../../primitives/io" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
sp-blockchain = { path = "../../primitives/blockchain" }
|
||||
primitives = { package = "sp-core", path = "../../primitives/core" }
|
||||
session = { package = "sp-session", path = "../../primitives/session" }
|
||||
app-crypto = { package = "sp-application-crypto", path = "../../primitives/application-crypto" }
|
||||
consensus_common = { package = "sp-consensus", path = "../../primitives/consensus/common" }
|
||||
network = { package = "sc-network", path = "../network" }
|
||||
chain-spec = { package = "sc-chain-spec", path = "../chain-spec" }
|
||||
client-api = { package = "sc-client-api", path = "../api" }
|
||||
client = { package = "sc-client", path = "../" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-session = { path = "../../primitives/session" }
|
||||
sp-application-crypto = { path = "../../primitives/application-crypto" }
|
||||
sp-consensus = { path = "../../primitives/consensus/common" }
|
||||
sc-network = { path = "../network" }
|
||||
sc-chain-spec = { path = "../chain-spec" }
|
||||
sc-client-api = { path = "../api" }
|
||||
sc-client = { path = "../" }
|
||||
sp-api = { path = "../../primitives/api" }
|
||||
client_db = { package = "sc-client-db", path = "../db" }
|
||||
sc-client-db = { path = "../db" }
|
||||
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
||||
sc-executor = { path = "../executor" }
|
||||
txpool = { package = "sc-transaction-pool", path = "../transaction-pool" }
|
||||
sp-transaction-pool = { package = "sp-transaction-pool", path = "../../primitives/transaction-pool" }
|
||||
rpc-servers = { package = "sc-rpc-server", path = "../rpc-servers" }
|
||||
rpc = { package = "sc-rpc", path = "../rpc" }
|
||||
tel = { package = "sc-telemetry", path = "../telemetry" }
|
||||
offchain = { package = "sc-offchain", path = "../offchain" }
|
||||
sc-transaction-pool = { path = "../transaction-pool" }
|
||||
sp-transaction-pool = { path = "../../primitives/transaction-pool" }
|
||||
sc-rpc-server = { path = "../rpc-servers" }
|
||||
sc-rpc = { path = "../rpc" }
|
||||
sc-telemetry = { path = "../telemetry" }
|
||||
sc-offchain = { path = "../offchain" }
|
||||
parity-multiaddr = { package = "parity-multiaddr", version = "0.5.0" }
|
||||
grafana-data-source = { path = "../../utils/grafana-data-source" }
|
||||
sc-tracing = { package = "sc-tracing", path = "../tracing" }
|
||||
sc-tracing = { path = "../tracing" }
|
||||
tracing = "0.1.10"
|
||||
|
||||
[dev-dependencies]
|
||||
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
||||
babe-primitives = { package = "sp-consensus-babe", path = "../../primitives/consensus/babe" }
|
||||
sp-consensus-babe = { path = "../../primitives/consensus/babe" }
|
||||
grandpa = { package = "sc-finality-grandpa", path = "../finality-grandpa" }
|
||||
grandpa-primitives = { package = "sp-finality-grandpa", path = "../../primitives/finality-grandpa" }
|
||||
tokio = "0.1"
|
||||
|
||||
Reference in New Issue
Block a user