mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 02:51:01 +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
26 lines
1.0 KiB
TOML
26 lines
1.0 KiB
TOML
[package]
|
|
name = "substrate-frame-rpc-system"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
client = { package = "sc-client", path = "../../../../client/" }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
futures = "0.3.1"
|
|
jsonrpc-core = "14.0.3"
|
|
jsonrpc-core-client = "14.0.3"
|
|
jsonrpc-derive = "14.0.3"
|
|
log = "0.4.8"
|
|
serde = { version = "1.0.101", features = ["derive"] }
|
|
sp-runtime = { path = "../../../../primitives/runtime" }
|
|
frame-system-rpc-runtime-api = { path = "../../../../frame/system/rpc/runtime-api" }
|
|
sp-core = { path = "../../../../primitives/core" }
|
|
sp-blockchain = { path = "../../../../primitives/blockchain" }
|
|
txpool-api = { package = "sp-transaction-pool", path = "../../../../primitives/transaction-pool" }
|
|
|
|
[dev-dependencies]
|
|
test-client = { package = "substrate-test-runtime-client", path = "../../../../test/utils/runtime/client" }
|
|
env_logger = "0.7.0"
|
|
txpool = { package = "sc-transaction-pool", path = "../../../../client/transaction-pool" }
|