Adds the collator implementation

This commit is contained in:
Bastian Köcher
2019-06-18 16:24:26 +02:00
parent 8dbc70e820
commit 99731a64a4
3 changed files with 148 additions and 3 deletions
+20
View File
@@ -0,0 +1,20 @@
[package]
name = "cumulus-collator"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
[dependencies]
# Substrate dependencies
runtime-primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch" }
consensus-common = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch" }
inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", branch = "bkchr-cumulus-branch" }
# Polkadot dependencies
polkadot-collator = { git = "https://github.com/paritytech/polkadot", branch = "bkchr-cumulus-branch" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "bkchr-cumulus-branch" }
# other deps
log = "0.4.6"
codec = { package = "parity-codec", version = "3.5.1", features = [ "derive" ] }
futures = "0.1.27"