mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-18 17:41:01 +00:00
8db9bb5dfd
* companion for #12663 jsonrpsee v0.16.1 * update substrate * merge master * Update rpc/Cargo.toml Co-authored-by: Alexandru Vasile <60601340+lexnv@users.noreply.github.com> * Update utils/staking-miner/Cargo.toml Co-authored-by: Alexandru Vasile <60601340+lexnv@users.noreply.github.com> * update lockfile for {"substrate"} Co-authored-by: Alexandru Vasile <60601340+lexnv@users.noreply.github.com> Co-authored-by: parity-processbot <>
33 lines
2.3 KiB
TOML
33 lines
2.3 KiB
TOML
[package]
|
|
name = "polkadot-rpc"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
jsonrpsee = { version = "0.16.2", features = ["server"] }
|
|
polkadot-primitives = { path = "../primitives" }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-consensus-babe-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
txpool-api = { package = "sc-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
substrate-state-trie-migration-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|