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
+27
View File
@@ -0,0 +1,27 @@
[package]
name = "cumulus-message-broker"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
[dependencies]
# substrate deps
frame-support = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" }
# Other dependencies
codec = { package = "parity-scale-codec", version = "1.3.0", features = [ "derive" ] }
# Cumulus dependencies
cumulus-primitives = { path = "../primitives" }
[features]
default = [ "std" ]
std = [
"frame-support/std",
"frame-system/std",
"sp-inherents/std",
"codec/std",
"cumulus-primitives/std",
]