Files
pezkuwi-subxt/substrate/bin/node/rpc/Cargo.toml
T
Ashley ffa2177d46 Remove the service builder (#6557)
* :)

* Slight tidy

* Remove ServiceBuilderCommand

* Remove whitespace

* Keep task manager alive for check_block/import_blocks

* Pass task_manager to run_until_exit

* WIP

* WIP

* Get rid of the macros

* Simplify a few chain components creation APIs related to the service

* Fix basic-authorship doc tests

* Remove DefaultQueue

* Update client/service/src/builder.rs

Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com>

* Move ExecutionExtensions comment around

* Remove unused BlakeTwo256

* Add sc-prelude

* Rename sc-prelude to sc-service-prelude

* Rename to sc-service-types

* Improve service types

* Fix line widths

* Remove sc-service-types and move type definitions to crates

* Update bin/node-template/node/src/service.rs

Co-authored-by: Seun Lanlege <seunlanlege@gmail.com>

* Add TLightClientWithHash

* Rework types

Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com>
Co-authored-by: Seun Lanlege <seunlanlege@gmail.com>
2020-07-22 19:10:27 +00:00

36 lines
2.1 KiB
TOML

[package]
name = "node-rpc"
version = "2.0.0-rc5"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sc-client-api = { version = "2.0.0-rc5", path = "../../../client/api" }
sc-rpc = { version = "2.0.0-rc5", path = "../../../client/rpc" }
jsonrpc-core = "14.2.0"
node-primitives = { version = "2.0.0-rc5", path = "../primitives" }
node-runtime = { version = "2.0.0-rc5", path = "../runtime" }
sp-runtime = { version = "2.0.0-rc5", path = "../../../primitives/runtime" }
sp-api = { version = "2.0.0-rc5", path = "../../../primitives/api" }
pallet-contracts-rpc = { version = "0.8.0-rc5", path = "../../../frame/contracts/rpc/" }
pallet-transaction-payment-rpc = { version = "2.0.0-rc5", path = "../../../frame/transaction-payment/rpc/" }
substrate-frame-rpc-system = { version = "2.0.0-rc5", path = "../../../utils/frame/rpc/system" }
sp-transaction-pool = { version = "2.0.0-rc5", path = "../../../primitives/transaction-pool" }
sc-consensus-babe = { version = "0.8.0-rc5", path = "../../../client/consensus/babe" }
sc-consensus-babe-rpc = { version = "0.8.0-rc5", path = "../../../client/consensus/babe/rpc" }
sp-consensus-babe = { version = "0.8.0-rc5", path = "../../../primitives/consensus/babe" }
sc-keystore = { version = "2.0.0-rc5", path = "../../../client/keystore" }
sc-consensus-epochs = { version = "0.8.0-rc5", path = "../../../client/consensus/epochs" }
sp-consensus = { version = "0.8.0-rc5", path = "../../../primitives/consensus/common" }
sp-blockchain = { version = "2.0.0-rc5", path = "../../../primitives/blockchain" }
sc-finality-grandpa = { version = "0.8.0-rc5", path = "../../../client/finality-grandpa" }
sc-finality-grandpa-rpc = { version = "0.8.0-rc5", path = "../../../client/finality-grandpa/rpc" }
sc-rpc-api = { version = "0.8.0-rc5", path = "../../../client/rpc-api" }
sp-block-builder = { version = "2.0.0-rc5", path = "../../../primitives/block-builder" }