mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 06:57:58 +00:00
9603b2fe5f
* Add cumulus-service Crate that abstracts the service of a parachain. * Make finalization infallible
28 lines
1.4 KiB
TOML
28 lines
1.4 KiB
TOML
[package]
|
|
name = "cumulus-service"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
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" }
|