mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 23:57:56 +00:00
572b4710d6
* Integrate DMP into collation * Integrate processed_downward_messages as well
59 lines
2.9 KiB
TOML
59 lines
2.9 KiB
TOML
[package]
|
|
name = "cumulus-collator"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
# Substrate dependencies
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# Polkadot dependencies
|
|
polkadot-service = { git = "https://github.com/paritytech/polkadot", features = [ "real-overseer" ] , branch = "master" }
|
|
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-validation = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
|
|
# Cumulus dependencies
|
|
cumulus-consensus = { path = "../consensus" }
|
|
cumulus-network = { path = "../network" }
|
|
cumulus-primitives = { path = "../primitives" }
|
|
cumulus-runtime = { path = "../runtime" }
|
|
|
|
# Other dependencies
|
|
log = "0.4.8"
|
|
codec = { package = "parity-scale-codec", version = "1.3.0", features = [ "derive" ] }
|
|
futures = { version = "0.3.1", features = ["compat"] }
|
|
parking_lot = "0.9"
|
|
|
|
[dev-dependencies]
|
|
# Cumulus dependencies
|
|
cumulus-test-runtime = { path = "../test/runtime" }
|
|
cumulus-test-client = { path = "../test/client" }
|
|
|
|
# Substrate dependencies
|
|
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# Polkadot dependencies
|
|
polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-node-subsystem-test-helpers = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
|
|
# Other dependencies
|
|
env_logger = "0.7.1"
|