mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-19 21:35:44 +00:00
Telemetry per node (#7463)
This commit is contained in:
Generated
+23
-86
@@ -133,12 +133,6 @@ version = "0.4.7"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "db55d72333851e17d572bec876e390cd3b11eb1ef53ae821dd9f3b653d2b4569"
|
||||
|
||||
[[package]]
|
||||
name = "arc-swap"
|
||||
version = "0.4.7"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4d25d88fd6b8041580a654f9d0c581a047baee2b3efee13275f2fc392fc75034"
|
||||
|
||||
[[package]]
|
||||
name = "arrayref"
|
||||
version = "0.3.6"
|
||||
@@ -797,16 +791,6 @@ dependencies = [
|
||||
"wasm-bindgen",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "console_log"
|
||||
version = "0.2.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "501a375961cef1a0d44767200e66e4a559283097e91d0730b1d75dfb2f8a1494"
|
||||
dependencies = [
|
||||
"log",
|
||||
"web-sys",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "const_fn"
|
||||
version = "0.4.3"
|
||||
@@ -3818,7 +3802,6 @@ dependencies = [
|
||||
"substrate-build-script-utils",
|
||||
"substrate-frame-cli",
|
||||
"tempfile",
|
||||
"tracing",
|
||||
"wasm-bindgen",
|
||||
"wasm-bindgen-futures",
|
||||
]
|
||||
@@ -4023,6 +4006,7 @@ dependencies = [
|
||||
"sc-rpc",
|
||||
"sc-rpc-api",
|
||||
"sc-service",
|
||||
"sc-telemetry",
|
||||
"sc-transaction-pool",
|
||||
"sp-api",
|
||||
"sp-block-builder",
|
||||
@@ -6547,8 +6531,6 @@ dependencies = [
|
||||
name = "sc-cli"
|
||||
version = "0.8.1"
|
||||
dependencies = [
|
||||
"ansi_term 0.12.1",
|
||||
"atty",
|
||||
"chrono",
|
||||
"fdlimit",
|
||||
"futures 0.3.9",
|
||||
@@ -6560,7 +6542,6 @@ dependencies = [
|
||||
"rand 0.7.3",
|
||||
"regex",
|
||||
"rpassword",
|
||||
"sc-cli-proc-macro",
|
||||
"sc-client-api",
|
||||
"sc-keystore",
|
||||
"sc-network",
|
||||
@@ -6582,19 +6563,6 @@ dependencies = [
|
||||
"thiserror",
|
||||
"tiny-bip39",
|
||||
"tokio 0.2.23",
|
||||
"tracing",
|
||||
"tracing-log",
|
||||
"tracing-subscriber",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "sc-cli-proc-macro"
|
||||
version = "2.0.0"
|
||||
dependencies = [
|
||||
"proc-macro-crate",
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -7167,8 +7135,6 @@ dependencies = [
|
||||
"sc-peerset",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"slog",
|
||||
"slog_derive",
|
||||
"smallvec 1.5.0",
|
||||
"sp-arithmetic",
|
||||
"sp-blockchain",
|
||||
@@ -7424,7 +7390,6 @@ dependencies = [
|
||||
"sc-transaction-pool",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"slog",
|
||||
"sp-api",
|
||||
"sp-application-crypto",
|
||||
"sp-block-builder",
|
||||
@@ -7529,18 +7494,19 @@ dependencies = [
|
||||
name = "sc-telemetry"
|
||||
version = "2.0.1"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"futures 0.3.9",
|
||||
"futures-timer 3.0.2",
|
||||
"libp2p",
|
||||
"log",
|
||||
"parking_lot 0.11.1",
|
||||
"pin-project 0.4.27",
|
||||
"rand 0.7.3",
|
||||
"serde",
|
||||
"slog",
|
||||
"slog-json",
|
||||
"slog-scope",
|
||||
"serde_json",
|
||||
"sp-utils",
|
||||
"take_mut",
|
||||
"tracing",
|
||||
"tracing-subscriber",
|
||||
"void",
|
||||
"wasm-timer",
|
||||
]
|
||||
@@ -7550,6 +7516,7 @@ name = "sc-tracing"
|
||||
version = "2.0.1"
|
||||
dependencies = [
|
||||
"ansi_term 0.12.1",
|
||||
"atty",
|
||||
"erased-serde",
|
||||
"lazy_static",
|
||||
"log",
|
||||
@@ -7558,14 +7525,27 @@ dependencies = [
|
||||
"regex",
|
||||
"rustc-hash",
|
||||
"sc-telemetry",
|
||||
"sc-tracing-proc-macro",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"slog",
|
||||
"sp-tracing",
|
||||
"thiserror",
|
||||
"tracing",
|
||||
"tracing-core",
|
||||
"tracing-log",
|
||||
"tracing-subscriber",
|
||||
"wasm-bindgen",
|
||||
"web-sys",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "sc-tracing-proc-macro"
|
||||
version = "2.0.0"
|
||||
dependencies = [
|
||||
"proc-macro-crate",
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -7935,50 +7915,6 @@ version = "0.4.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
|
||||
|
||||
[[package]]
|
||||
name = "slog"
|
||||
version = "2.5.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1cc9c640a4adbfbcc11ffb95efe5aa7af7309e002adab54b185507dbf2377b99"
|
||||
dependencies = [
|
||||
"erased-serde",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "slog-json"
|
||||
version = "2.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ddc0d2aff1f8f325ef660d9a0eb6e6dcd20b30b3f581a5897f58bf42d061c37a"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"erased-serde",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"slog",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "slog-scope"
|
||||
version = "4.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7c44c89dd8b0ae4537d1ae318353eaf7840b4869c536e31c41e963d1ea523ee6"
|
||||
dependencies = [
|
||||
"arc-swap",
|
||||
"lazy_static",
|
||||
"slog",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "slog_derive"
|
||||
version = "0.2.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a945ec7f7ce853e89ffa36be1e27dce9a43e82ff9093bf3461c30d5da74ed11b"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "smallvec"
|
||||
version = "0.6.13"
|
||||
@@ -8935,7 +8871,6 @@ version = "0.8.1"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"console_error_panic_hook",
|
||||
"console_log",
|
||||
"futures 0.1.30",
|
||||
"futures 0.3.9",
|
||||
"futures-timer 3.0.2",
|
||||
@@ -8949,6 +8884,8 @@ dependencies = [
|
||||
"sc-informant",
|
||||
"sc-network",
|
||||
"sc-service",
|
||||
"sc-telemetry",
|
||||
"sc-tracing",
|
||||
"sp-database",
|
||||
"wasm-bindgen",
|
||||
"wasm-bindgen-futures",
|
||||
|
||||
Reference in New Issue
Block a user