Cargo.toml 914 Bytes
Newer Older
1
2
[package]
name = "polkadot-rpc"
André Silva's avatar
André Silva committed
3
version = "0.6.6"
4
5
6
7
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"

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