[package] name = "cumulus-client-collator" version = "0.1.0" authors = ["Parity Technologies "] edition = "2021" [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] } futures = "0.3.21" parking_lot = "0.12.0" tracing = "0.1.25" # Substrate sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } # Polkadot polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.40" } polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.40" } polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.40" } polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.40" } # Cumulus cumulus-client-consensus-common = { path = "../consensus/common" } cumulus-client-network = { path = "../network" } cumulus-primitives-core = { path = "../../primitives/core" } [dev-dependencies] async-trait = "0.1.42" # Substrate sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } # Polkadot polkadot-node-subsystem-test-helpers = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.40" } # Cumulus cumulus-test-client = { path = "../../test/client" } cumulus-test-runtime = { path = "../../test/runtime" }