mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-25 07:11:11 +00:00
bd9b743872
* initial integration and migration code * fix tests * fix counting test * assume the current version on missing file * use SelectRelayChain * remove duplicate metric * Update node/service/src/lib.rs Co-authored-by: Robert Habermeier <rphmeier@gmail.com> * remove ApprovalCheckingVotingRule * address my concern * never mode for StagnantCheckInterval * REVERTME: some logs * w00t * it's ugly but it works * Revert "REVERTME: some logs" This reverts commit e210505a2e83e31c381394924500b69277bb042e. * it's handle, not handler * fix a few typos Co-authored-by: Robert Habermeier <rphmeier@gmail.com>
31 lines
1.1 KiB
TOML
31 lines
1.1 KiB
TOML
[package]
|
|
name = "polkadot-overseer"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.42"
|
|
client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
futures = "0.3.15"
|
|
futures-timer = "3.0.2"
|
|
parking_lot = "0.11.1"
|
|
polkadot-node-network-protocol = { path = "../network/protocol" }
|
|
polkadot-node-primitives = { path = "../primitives" }
|
|
polkadot-node-subsystem-types = { path = "../subsystem-types" }
|
|
polkadot-node-metrics = { path = "../metrics" }
|
|
polkadot-primitives = { path = "../../primitives" }
|
|
polkadot-overseer-gen = { path = "./overseer-gen" }
|
|
polkadot-overseer-all-subsystems-gen = { path = "./all-subsystems-gen" }
|
|
tracing = "0.1.26"
|
|
lru = "0.6"
|
|
|
|
[dev-dependencies]
|
|
metered-channel = { path = "../metered-channel" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
futures = { version = "0.3.15", features = ["thread-pool"] }
|
|
femme = "2.1.1"
|
|
kv-log-macro = "1.0.7"
|
|
assert_matches = "1.4.0"
|