mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-29 13:48:00 +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>
36 lines
1.7 KiB
TOML
36 lines
1.7 KiB
TOML
[package]
|
|
name = "cumulus-client-service"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
# Cumulus dependencies
|
|
cumulus-client-consensus-common = { path = "../consensus/common" }
|
|
cumulus-client-collator = { path = "../collator" }
|
|
cumulus-client-pov-recovery = { path = "../pov-recovery" }
|
|
cumulus-primitives-core = { path = "../../primitives/core" }
|
|
|
|
# Substrate dependencies
|
|
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-client-api = { 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-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# Polkadot dependencies
|
|
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
|
|
# Other deps
|
|
tracing = "0.1.22"
|
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
|
parking_lot = "0.10.2"
|