mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-01 14:47:55 +00:00
d8230ecf4b
* Refactor rebase master prometheus_v0.3 * Milestone1: Final Version of v0.3 * no-std or warm compatibility issues, grapana-data -source code reference and correction,applicable * Cargo.lock paritytech/master rebase * prometheus networking.rs del, grafana-data-source networking.rs pub edit and note * chore: reflect various feedback * Spaces to tabs. * Replace grafana and tidy * Add generics * Add photo back * Re-fix spaces in primitives/consensus/babe/src/inherents.rs * Refactor rebase master prometheus_v0.3 * Milestone1: Final Version of v0.3 * no-std or warm compatibility issues, grapana-data -source code reference and correction,applicable * prometheus networking.rs del, grafana-data-source networking.rs pub edit and note * chore: reflect various feedback * Replace grafana and tidy * Add generics * Add photo back * Re-fix spaces in primitives/consensus/babe/src/inherents.rs * chore: revert this file back to paritytech/master inherents.rs. * Add newline at EOF * Tidy * Use local registry * fix typo Co-Authored-By: Max Inden <mail@max-inden.de> * chore: Apply review feedback * endpoint -> exporter * fix readme * Remove lazy_static, use ServiceMetrics struct instead * Switch to using GaugeVecs * chore: without nightly , edit README * block_height -> block_height_number * Switch to a ready_transactions_number gauge * Update utils/prometheus/src/lib.rs Co-Authored-By: Max Inden <mail@max-inden.de> * no-prometheus flag add * /metrics url Input check * remove prometheus in Tracing * remove prometheus in Tracing * chore: master code rebase edit * gitlab-check-web-wasm edit code * From:from and cargo.lock update * with_prometheus_registry add background_tasks * utils/prometheus/src/lib.rs: Restructure #[cfg] for wasm without hyper Given that Hyper is not compatible with WASM targets it needs to be excluded from WASM builds. Instead of introducing #[cfg] lines throughout the crate, this patch splits the crate into two: known_os and unknown_os (WASM). * utils/prometheus/src/lib.rs: Feature gate known_os module * client/cli/src/lib.rs: Re-add newline at end of file Co-authored-by: JeseonLEE <zeroday26@gmail.com> Co-authored-by: Gavin Wood <github@gavwood.com> Co-authored-by: Ashley <ashley.ruglys@gmail.com> Co-authored-by: Hyungsuk Kang <hskang9@gmail.com>
67 lines
2.9 KiB
TOML
67 lines
2.9 KiB
TOML
[package]
|
|
name = "sc-service"
|
|
version = "0.8.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0"
|
|
|
|
[features]
|
|
default = ["rocksdb"]
|
|
# The RocksDB feature activates the RocksDB database backend. If it is not activated, and you pass
|
|
# a path to a database, an error will be produced at runtime.
|
|
rocksdb = ["sc-client-db/kvdb-rocksdb"]
|
|
wasmtime = [
|
|
"sc-executor/wasmtime",
|
|
]
|
|
|
|
[dependencies]
|
|
derive_more = "0.99.2"
|
|
futures01 = { package = "futures", version = "0.1.29" }
|
|
futures = "0.3.1"
|
|
futures-diagnose = "1.0"
|
|
parking_lot = "0.10.0"
|
|
lazy_static = "1.4.0"
|
|
log = "0.4.8"
|
|
slog = { version = "2.5.2", features = ["nested-values"] }
|
|
futures-timer = "3.0.1"
|
|
wasm-timer = "0.2"
|
|
exit-future = "0.2.0"
|
|
serde = "1.0.101"
|
|
serde_json = "1.0.41"
|
|
sysinfo = "0.9.5"
|
|
target_info = "0.1.0"
|
|
sc-keystore = { version = "2.0.0", path = "../keystore" }
|
|
sp-io = { version = "2.0.0", path = "../../primitives/io" }
|
|
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
|
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
|
|
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
|
sp-session = { version = "2.0.0", path = "../../primitives/session" }
|
|
sp-application-crypto = { version = "2.0.0", path = "../../primitives/application-crypto" }
|
|
sp-consensus = { version = "0.8", path = "../../primitives/consensus/common" }
|
|
sc-network = { version = "0.8", path = "../network" }
|
|
sc-chain-spec = { version = "2.0.0", path = "../chain-spec" }
|
|
sc-client-api = { version = "2.0.0", path = "../api" }
|
|
sc-client = { version = "0.8", path = "../" }
|
|
sp-api = { version = "2.0.0", path = "../../primitives/api" }
|
|
sc-client-db = { version = "0.8", path = "../db" }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
sc-executor = { version = "0.8", path = "../executor" }
|
|
sc-transaction-pool = { version = "2.0.0", path = "../transaction-pool" }
|
|
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" }
|
|
sc-rpc-server = { version = "2.0.0", path = "../rpc-servers" }
|
|
sc-rpc = { version = "2.0.0", path = "../rpc" }
|
|
sc-telemetry = { version = "2.0.0", path = "../telemetry" }
|
|
sc-offchain = { version = "2.0.0", path = "../offchain" }
|
|
parity-multiaddr = { package = "parity-multiaddr", version = "0.5.0" }
|
|
prometheus-exporter = { path = "../../utils/prometheus" }
|
|
sc-tracing = { version = "2.0.0", path = "../tracing" }
|
|
tracing = "0.1.10"
|
|
parity-util-mem = { version = "0.5.1", default-features = false, features = ["primitive-types"] }
|
|
|
|
[dev-dependencies]
|
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
|
sp-consensus-babe = { version = "0.8", path = "../../primitives/consensus/babe" }
|
|
grandpa = { version = "0.8", package = "sc-finality-grandpa", path = "../finality-grandpa" }
|
|
grandpa-primitives = { version = "2.0.0", package = "sp-finality-grandpa", path = "../../primitives/finality-grandpa" }
|
|
tokio = { version = "0.2", features = ["rt-core"] }
|