[package] name = 'rococo-collator' version = '0.1.0' authors = ["Parity Technologies "] build = 'build.rs' edition = '2018' [[bin]] name = 'rococo-collator' path = 'src/main.rs' [dependencies] derive_more = '0.15.0' exit-future = '0.1.4' futures = { version = "0.3.1", features = ["compat"] } log = '0.4.8' parking_lot = '0.9.0' trie-root = '0.15.2' codec = { package = 'parity-scale-codec', version = '1.0.0' } structopt = "0.3.3" ansi_term = "0.12.1" serde = { version = "1.0.101", features = ["derive"] } hex-literal = "0.2.1" # Parachain dependencies parachain-runtime = { package = "cumulus-test-parachain-runtime", path = "runtime" } parachain-contracts-runtime = { package = "cumulus-contracts-parachain-runtime", path = "contracts-runtime" } rococo-parachain-primitives = { path = "primitives" } # Substrate dependencies sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } sp-io = { 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-consensus = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sp-session = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sc-cli = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sc-executor = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sc-service = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch", version = "0.8.0-rc5" } sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sp-trie = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sp-api = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sc-informant = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } # RPC related dependencies cumulus-pallet-contracts-rpc = { path = "./pallets/contracts/rpc" } jsonrpc-core = "14.2.0" # Cumulus dependencies cumulus-consensus = { path = "../consensus" } cumulus-collator = { path = "../collator" } cumulus-network = { path = "../network" } cumulus-primitives = { path = "../primitives" } cumulus-service = { path = "../service" } # Polkadot dependencies polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "rococo-branch" } polkadot-collator = { git = "https://github.com/paritytech/polkadot", branch = "rococo-branch" } polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "rococo-branch" } polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "rococo-branch" } polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "rococo-branch" } [build-dependencies] substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } [dev-dependencies] assert_cmd = "0.12" nix = "0.17"