Introduce message broker for receiving and sending relay chain messages (#80)

* Start message broker implementation

* Finish first stub implementation

* Add features

* Fix attribute

* Update primitives/src/lib.rs

Co-Authored-By: Joshy Orndorff <JoshOrndorff@users.noreply.github.com>

Co-authored-by: Joshy Orndorff <JoshOrndorff@users.noreply.github.com>
This commit is contained in:
Bastian Köcher
2020-04-20 16:22:05 +02:00
committed by GitHub
parent 028270529c
commit 41e5f0dcfd
11 changed files with 200 additions and 5 deletions
+19
View File
@@ -797,6 +797,17 @@ dependencies = [
"tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "cumulus-message-broker"
version = "0.1.0"
dependencies = [
"cumulus-primitives 0.1.0",
"frame-support 2.0.0-alpha.5 (git+https://github.com/paritytech/substrate?branch=cumulus-branch)",
"frame-system 2.0.0-alpha.5 (git+https://github.com/paritytech/substrate?branch=cumulus-branch)",
"parity-scale-codec 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"sp-inherents 2.0.0-alpha.5 (git+https://github.com/paritytech/substrate?branch=cumulus-branch)",
]
[[package]]
name = "cumulus-network"
version = "0.1.0"
@@ -813,6 +824,14 @@ dependencies = [
"sp-runtime 2.0.0-alpha.5 (git+https://github.com/paritytech/substrate?branch=cumulus-branch)",
]
[[package]]
name = "cumulus-primitives"
version = "0.1.0"
dependencies = [
"impl-trait-for-tuples 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
"sp-inherents 2.0.0-alpha.5 (git+https://github.com/paritytech/substrate?branch=cumulus-branch)",
]
[[package]]
name = "cumulus-runtime"
version = "0.1.0"