Files
pezkuwi-subxt/substrate/utils/frame/rpc/system/Cargo.toml
T
2022-05-11 10:39:39 +00:00

37 lines
1.6 KiB
TOML

[package]
name = "substrate-frame-rpc-system"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
license = "Apache-2.0"
homepage = "https://substrate.io"
repository = "https://github.com/paritytech/substrate/"
description = "FRAME's system exposed over Substrate RPC"
readme = "README.md"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde_json = "1"
codec = { package = "parity-scale-codec", version = "3.0.0" }
jsonrpsee = { version = "0.13.0", features = ["server"] }
futures = "0.3.21"
log = "0.4.16"
frame-system-rpc-runtime-api = { version = "4.0.0-dev", path = "../../../../frame/system/rpc/runtime-api" }
sc-client-api = { version = "4.0.0-dev", path = "../../../../client/api" }
sc-rpc-api = { version = "0.10.0-dev", path = "../../../../client/rpc-api" }
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../../../client/transaction-pool/api" }
sp-api = { version = "4.0.0-dev", path = "../../../../primitives/api" }
sp-block-builder = { version = "4.0.0-dev", path = "../../../../primitives/block-builder" }
sp-blockchain = { version = "4.0.0-dev", path = "../../../../primitives/blockchain" }
sp-core = { version = "6.0.0", path = "../../../../primitives/core" }
sp-runtime = { version = "6.0.0", path = "../../../../primitives/runtime" }
[dev-dependencies]
sc-transaction-pool = { version = "4.0.0-dev", path = "../../../../client/transaction-pool" }
tokio = "1.17.0"
assert_matches = "1.3.0"
sp-tracing = { version = "5.0.0", path = "../../../../primitives/tracing" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../../test-utils/runtime/client" }