Cargo.toml 1.11 KB
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.25"
10
memory-lru = "0.1.0"
11
parity-util-mem = { version = "0.9.0", default-features = false }
12

13
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
14
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
15
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
16
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
17
18
19

polkadot-primitives = { path = "../../../primitives" }
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
20
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
21
22

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