Cargo.toml 930 Bytes
Newer Older
1
2
[package]
name = "polkadot-rpc"
3
version = "0.7.9"
4
5
6
7
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"

[dependencies]
8
client = { package = "sc-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
Kian Paimani's avatar
Kian Paimani committed
9
jsonrpc-core = "14.0.3"
10
polkadot-primitives = { path = "../primitives" }
11
12
13
14
15
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master"  }
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
txpool-api = { package = "sp-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "polkadot-master"  }
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
Kian Paimani's avatar
Kian Paimani committed
16
polkadot-runtime = { path = "../runtime" }
17