[package] name = "cumulus-test-client" version = "0.1.0" authors = ["Parity Technologies "] edition = "2021" [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [ "derive" ] } # Substrate sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-runtime = { 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-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } # Polkadot polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.40" } polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.40" } # Cumulus cumulus-test-runtime = { path = "../runtime" } cumulus-test-service = { path = "../service" } cumulus-test-relay-sproof-builder = { path = "../relay-sproof-builder" } cumulus-primitives-core = { path = "../../primitives/core" } cumulus-primitives-parachain-inherent = { path = "../../primitives/parachain-inherent" }