Cargo.toml 845 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[package]
name = "polkadot-node-core-runtime-api"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"

[dependencies]
futures = "0.3.5"
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }

polkadot-primitives = { path = "../../../primitives" }
polkadot-node-primitives = { path = "../../primitives" }
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
15
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
16
17

[dev-dependencies]
18
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
19
futures = { version = "0.3.5", features = ["thread-pool"] }
20
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }