[package] name = "cumulus-service" version = "0.1.0" authors = ["Parity Technologies "] edition = "2018" [dependencies] # Cumulus dependencies cumulus-consensus = { path = "../consensus" } cumulus-collator = { path = "../collator" } cumulus-primitives = { path = "../primitives" } cumulus-network = { path = "../network" } # Substrate dependencies sc-service = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sp-api = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sp-core = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } # Polkadot dependencies polkadot-collator = { git = "https://github.com/paritytech/polkadot", branch = "rococo-branch" } polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "rococo-branch" } polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "rococo-branch" }