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

[dependencies]
8
futures = "0.3.12"
9
tracing = "0.1.22"
10
tracing-futures = "0.2.4"
11
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
12
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
13
14
15

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

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