[package] name = "cumulus-consensus" description = "Proxy Polkadot's consensus as a consensus engine for Substrate" version = "0.1.0" authors = ["Parity Technologies "] edition = "2018" [dependencies] # substrate deps sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" } sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" } sp-core = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" } sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" } sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" } sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" } sp-api = { git = "https://github.com/paritytech/substrate", branch = "cumulus-branch" } # polkadot deps polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch" } polkadot-runtime = { git = "https://github.com/paritytech/polkadot", branch = "cumulus-branch" } # other deps futures = { version = "0.3.1", features = ["compat"] } tokio = "0.1.22" codec = { package = "parity-scale-codec", version = "1.3.0", features = [ "derive" ] } log = "0.4"