mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 01:18:00 +00:00
e49989971d
* drop in tracing to replace log * add structured logging to trace messages * add structured logging to debug messages * add structured logging to info messages * add structured logging to warn messages * add structured logging to error messages * normalize spacing and Display vs Debug * add instrumentation to the various 'fn run' * use explicit tracing module throughout * fix availability distribution test * don't double-print errors * remove further redundancy from logs * fix test errors * fix more test errors * remove unused kv_log_macro * fix unused variable * add tracing spans to collation generation * add tracing spans to av-store * add tracing spans to backing * add tracing spans to bitfield-signing * add tracing spans to candidate-selection * add tracing spans to candidate-validation * add tracing spans to chain-api * add tracing spans to provisioner * add tracing spans to runtime-api * add tracing spans to availability-distribution * add tracing spans to bitfield-distribution * add tracing spans to network-bridge * add tracing spans to collator-protocol * add tracing spans to pov-distribution * add tracing spans to statement-distribution * add tracing spans to overseer * cleanup
34 lines
1.2 KiB
TOML
34 lines
1.2 KiB
TOML
[package]
|
|
name = "polkadot-node-subsystem"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
description = "Subsystem traits and message definitions"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.41"
|
|
derive_more = "0.99.11"
|
|
futures = "0.3.8"
|
|
futures-timer = "3.0.2"
|
|
tracing = "0.1.21"
|
|
tracing-futures = "0.2.4"
|
|
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
|
parking_lot = { version = "0.11.1", optional = true }
|
|
pin-project = "1.0.2"
|
|
polkadot-node-primitives = { path = "../primitives" }
|
|
polkadot-node-network-protocol = { path = "../network/protocol" }
|
|
polkadot-primitives = { path = "../../primitives" }
|
|
polkadot-statement-table = { path = "../../statement-table" }
|
|
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
smallvec = "1.5.0"
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
thiserror = "1.0.22"
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.4.0"
|
|
async-trait = "0.1.41"
|
|
futures = { version = "0.3.8", features = ["thread-pool"] }
|
|
parking_lot = "0.11.1"
|
|
polkadot-node-subsystem-test-helpers = { path = "../subsystem-test-helpers" }
|