Files
pezkuwi-subxt/substrate/client/rpc/Cargo.toml
T
Tomasz Drwięga 8778ca7dc8 [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.
2019-12-16 20:36:49 +08:00

40 lines
1.4 KiB
TOML

[package]
name = "sc-rpc"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
[dependencies]
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"
sp-core = { path = "../../primitives/core" }
rpc = { package = "jsonrpc-core", version = "14.0.3" }
sp-version = { path = "../../primitives/version" }
serde_json = "1.0.41"
sp-session = { path = "../../primitives/session" }
sp-runtime = { path = "../../primitives/runtime" }
sp-rpc = { path = "../../primitives/rpc" }
sp-state-machine = { path = "../../primitives/state-machine" }
sc-executor = { path = "../executor" }
sc-keystore = { path = "../keystore" }
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" }
[dev-dependencies]
assert_matches = "1.3.0"
futures01 = { package = "futures", version = "0.1.29" }
sc-network = { path = "../network" }
rustc-hex = "2.0.1"
sp-io = { path = "../../primitives/io" }
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
tokio = "0.1.22"
sc-transaction-pool = { path = "../transaction-pool" }