mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 04:07:57 +00:00
d7eaaeee65
* Use orchestra and metered channel from repo Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> * Update node/subsystem-util/Cargo.toml Co-authored-by: Andronik <write@reusable.software> * Update node/subsystem-types/Cargo.toml Co-authored-by: Andronik <write@reusable.software> * Update node/metrics/Cargo.toml Co-authored-by: Andronik <write@reusable.software> * Update node/overseer/Cargo.toml Co-authored-by: Andronik <write@reusable.software> * Update node/overseer/Cargo.toml Co-authored-by: Andronik <write@reusable.software> * update cargo lock Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> Co-authored-by: Andronik <write@reusable.software>
43 lines
1.7 KiB
TOML
43 lines
1.7 KiB
TOML
[package]
|
|
name = "polkadot-node-metrics"
|
|
version = "0.9.29"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
description = "Subsystem metric helpers"
|
|
|
|
[dependencies]
|
|
futures = "0.3.21"
|
|
futures-timer = "3.0.2"
|
|
gum = { package = "tracing-gum", path = "../gum" }
|
|
|
|
metered = { package = "prioritized-metered-channel", version = "0.2.0" }
|
|
|
|
# Both `sc-service` and `sc-cli` are required by runtime metrics `logger_hook()`.
|
|
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
|
primitives = { package = "polkadot-primitives", path = "../../primitives/" }
|
|
bs58 = { version = "0.4.0", features = ["alloc"] }
|
|
log = "0.4.17"
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2.0.4"
|
|
nix = "0.24.1"
|
|
tempfile = "3.2.0"
|
|
hyper = { version = "0.14.20", default-features = false, features = ["http1", "tcp"] }
|
|
tokio = "1.19.2"
|
|
polkadot-test-service = { path = "../test/service", features=["runtime-metrics"]}
|
|
substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
prometheus-parse = {version = "0.2.2"}
|
|
|
|
[features]
|
|
default = []
|
|
runtime-metrics = []
|
|
runtime-benchmarks = []
|