mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 23:51:05 +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
@@ -5,25 +5,25 @@ authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
api = { package = "sc-rpc-api", path = "../rpc-api" }
|
||||
client-api = { package = "sc-client-api", path = "../api" }
|
||||
client = { package = "sc-client", path = "../" }
|
||||
sc-rpc-api = { path = "../rpc-api" }
|
||||
sc-client-api = { path = "../api" }
|
||||
sc-client = { path = "../" }
|
||||
sp-api = { path = "../../primitives/api" }
|
||||
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
||||
futures = { version = "0.3.1", features = ["compat"] }
|
||||
jsonrpc-pubsub = "14.0.3"
|
||||
log = "0.4.8"
|
||||
primitives = { package = "sp-core", path = "../../primitives/core" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
rpc = { package = "jsonrpc-core", version = "14.0.3" }
|
||||
runtime_version = { package = "sp-version", path = "../../primitives/version" }
|
||||
sp-version = { path = "../../primitives/version" }
|
||||
serde_json = "1.0.41"
|
||||
session = { package = "sp-session", path = "../../primitives/session" }
|
||||
sp-session = { path = "../../primitives/session" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
rpc-primitives = { package = "sp-rpc", path = "../../primitives/rpc" }
|
||||
state_machine = { package = "sp-state-machine", path = "../../primitives/state-machine" }
|
||||
sp-rpc = { path = "../../primitives/rpc" }
|
||||
sp-state-machine = { path = "../../primitives/state-machine" }
|
||||
sc-executor = { path = "../executor" }
|
||||
sc-keystore = { path = "../keystore" }
|
||||
txpool-api = { package = "sp-transaction-pool", path = "../../primitives/transaction-pool" }
|
||||
sp-transaction-pool = { path = "../../primitives/transaction-pool" }
|
||||
sp-blockchain = { path = "../../primitives/blockchain" }
|
||||
hash-db = { version = "0.15.2", default-features = false }
|
||||
parking_lot = { version = "0.9.0" }
|
||||
@@ -31,9 +31,9 @@ parking_lot = { version = "0.9.0" }
|
||||
[dev-dependencies]
|
||||
assert_matches = "1.3.0"
|
||||
futures01 = { package = "futures", version = "0.1.29" }
|
||||
network = { package = "sc-network", path = "../network" }
|
||||
sc-network = { path = "../network" }
|
||||
rustc-hex = "2.0.1"
|
||||
sp-io = { path = "../../primitives/io" }
|
||||
test-client = { package = "substrate-test-runtime-client", path = "../../test-utils/runtime/client" }
|
||||
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
||||
tokio = "0.1.22"
|
||||
txpool = { package = "sc-transaction-pool", path = "../transaction-pool" }
|
||||
sc-transaction-pool = { path = "../transaction-pool" }
|
||||
|
||||
Reference in New Issue
Block a user