mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 18:57:57 +00:00
7ffb205b0d
* Start with a failing integration test & some refactorings * More work * Make it "work" * Add `NullConsensus` for the test * More refactorings * Move stuff over to its own crate * Refactorings * Integrate it into `service` and make the test working * Docs and some exit condition * Use the real import queue * Fix tests * Update client/pov-recovery/src/active_candidate_recovery.rs Co-authored-by: Bernhard Schuster <bernhard@ahoi.io> * Fetch slot duration from the relay chain * Docs * Fixes Co-authored-by: Bernhard Schuster <bernhard@ahoi.io>
76 lines
4.3 KiB
TOML
76 lines
4.3 KiB
TOML
[package]
|
|
name = "cumulus-test-service"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
|
rand = "0.7.3"
|
|
serde = { version = "1.0.101", features = ["derive"] }
|
|
async-trait = "0.1.42"
|
|
|
|
# Substrate
|
|
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# Polkadot
|
|
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
|
|
# Cumulus
|
|
cumulus-client-consensus-relay-chain = { path = "../../client/consensus/relay-chain" }
|
|
cumulus-client-network = { path = "../../client/network" }
|
|
cumulus-client-service = { path = "../../client/service" }
|
|
cumulus-client-consensus-common = { path = "../../client/consensus/common" }
|
|
cumulus-primitives-core = { path = "../../primitives/core" }
|
|
cumulus-primitives-parachain-inherent = { path = "../../primitives/parachain-inherent" }
|
|
cumulus-test-runtime = { path = "../runtime" }
|
|
cumulus-test-relay-validation-worker-provider = { path = "../relay-validation-worker-provider" }
|
|
|
|
# RPC related dependencies
|
|
jsonrpc-core = "15.1.0"
|
|
|
|
[dev-dependencies]
|
|
futures = { version = "0.3.5" }
|
|
tokio = { version = "0.2.21", features = ["macros"] }
|
|
|
|
# Polkadot dependencies
|
|
polkadot-test-runtime = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
|
|
# Substrate dependencies
|
|
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# Cumulus
|
|
cumulus-test-runtime-upgrade = { path = "../runtime-upgrade" }
|