mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 17:47:56 +00:00
7773daaf5b
* rename crate: sp-transaction-pool-api -> sp-transaction-pool * move primitives/core/derive-debug -> primitives/derive-debug; primitives/core/storage -> primitives/storage * rename crate sp-core-storage -> sp-storage * rename and move: test/utils/transaction-factory -> client/transaction-factory * move transaction-factory -> node/transaction-factory * fix missing rename * Move chain-spec-builder into bin/utils * move subkey into bin/utils * Update new subkey location * Update docs to reflect new location for utils * fixing import name
17 lines
677 B
TOML
17 lines
677 B
TOML
[package]
|
|
name = "node-rpc"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
client = { package = "sc-client", path = "../../../client/" }
|
|
jsonrpc-core = "14.0.3"
|
|
node-primitives = { path = "../primitives" }
|
|
node-runtime = { path = "../runtime" }
|
|
sp-runtime = { path = "../../../primitives/runtime" }
|
|
pallet-contracts-rpc = { path = "../../../frame/contracts/rpc/" }
|
|
pallet-transaction-payment-rpc = { path = "../../../frame/transaction-payment/rpc/" }
|
|
substrate-frame-rpc-system = { path = "../../../utils/frame/rpc/system" }
|
|
txpool-api = { package = "sp-transaction-pool", path = "../../../primitives/transaction-pool" }
|