mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 20:27:58 +00:00
14a4eed2aa
* service: storage monitor added Storage monitor added. It uses `notify` create to get notifications about any changes to monitored path (which is database path). Notifications are consumed in essential task which terminates when available storage space drops below given threshold. Closes: #12399 * Cargo.lock updated * misspell * fs events throttling added * minor updates * filter out non mutating events * misspell * ".git/.scripts/commands/fmt/fmt.sh" * Update client/service/src/storage_monitor.rs Co-authored-by: Anton <anton.kalyaev@gmail.com> * storage-monitor crate added * cleanup: configuration + service builder * storage_monitor in custom service (wip) * copy-paste bad desc fixed * notify removed * storage_monitor added to node * fix for clippy * publish = false * Update bin/node/cli/src/command.rs Co-authored-by: Dmitry Markin <dmitry@markin.tech> * Apply suggestions from code review Co-authored-by: Bastian Köcher <git@kchr.de> * crate name: storage-monitor -> sc-storage-monitor * error handling improved * Apply suggestions from code review Co-authored-by: Bastian Köcher <git@kchr.de> * publish=false removed Co-authored-by: command-bot <> Co-authored-by: Anton <anton.kalyaev@gmail.com> Co-authored-by: Dmitry Markin <dmitry@markin.tech> Co-authored-by: Bastian Köcher <git@kchr.de>
88 lines
4.4 KiB
TOML
88 lines
4.4 KiB
TOML
[package]
|
|
name = "sc-service"
|
|
version = "0.10.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Substrate service. Starts a thread that spins up the network, client, and extrinsic pool. Manages communication between them."
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[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/rocksdb"]
|
|
# exposes the client type
|
|
test-helpers = []
|
|
runtime-benchmarks = ["sc-client-db/runtime-benchmarks"]
|
|
|
|
[dependencies]
|
|
jsonrpsee = { version = "0.16.2", features = ["server"] }
|
|
thiserror = "1.0.30"
|
|
futures = "0.3.21"
|
|
rand = "0.8.5"
|
|
parking_lot = "0.12.1"
|
|
log = "0.4.17"
|
|
futures-timer = "3.0.1"
|
|
exit-future = "0.2.0"
|
|
pin-project = "1.0.12"
|
|
serde = "1.0.136"
|
|
serde_json = "1.0.85"
|
|
sc-keystore = { version = "4.0.0-dev", path = "../keystore" }
|
|
sp-runtime = { version = "7.0.0", path = "../../primitives/runtime" }
|
|
sp-trie = { version = "7.0.0", path = "../../primitives/trie" }
|
|
sp-externalities = { version = "0.13.0", path = "../../primitives/externalities" }
|
|
sc-utils = { version = "4.0.0-dev", path = "../utils" }
|
|
sp-version = { version = "5.0.0", path = "../../primitives/version" }
|
|
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
|
sp-core = { version = "7.0.0", path = "../../primitives/core" }
|
|
sp-keystore = { version = "0.13.0", path = "../../primitives/keystore" }
|
|
sp-session = { version = "4.0.0-dev", path = "../../primitives/session" }
|
|
sp-state-machine = { version = "0.13.0", path = "../../primitives/state-machine" }
|
|
sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" }
|
|
sc-consensus = { version = "0.10.0-dev", path = "../../client/consensus/common" }
|
|
sp-storage = { version = "7.0.0", path = "../../primitives/storage" }
|
|
sc-network = { version = "0.10.0-dev", path = "../network" }
|
|
sc-network-bitswap = { version = "0.10.0-dev", path = "../network/bitswap" }
|
|
sc-network-common = { version = "0.10.0-dev", path = "../network/common" }
|
|
sc-network-light = { version = "0.10.0-dev", path = "../network/light" }
|
|
sc-network-sync = { version = "0.10.0-dev", path = "../network/sync" }
|
|
sc-network-transactions = { version = "0.10.0-dev", path = "../network/transactions" }
|
|
sc-chain-spec = { version = "4.0.0-dev", path = "../chain-spec" }
|
|
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
|
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
|
sc-client-db = { version = "0.10.0-dev", default-features = false, path = "../db" }
|
|
codec = { package = "parity-scale-codec", version = "3.2.2" }
|
|
sc-executor = { version = "0.10.0-dev", path = "../executor" }
|
|
sc-transaction-pool = { version = "4.0.0-dev", path = "../transaction-pool" }
|
|
sp-transaction-pool = { version = "4.0.0-dev", path = "../../primitives/transaction-pool" }
|
|
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../transaction-pool/api" }
|
|
sp-transaction-storage-proof = { version = "4.0.0-dev", path = "../../primitives/transaction-storage-proof" }
|
|
sc-rpc-server = { version = "4.0.0-dev", path = "../rpc-servers" }
|
|
sc-rpc = { version = "4.0.0-dev", path = "../rpc" }
|
|
sc-rpc-spec-v2 = { version = "0.10.0-dev", path = "../rpc-spec-v2" }
|
|
sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" }
|
|
sc-informant = { version = "0.10.0-dev", path = "../informant" }
|
|
sc-telemetry = { version = "4.0.0-dev", path = "../telemetry" }
|
|
sc-offchain = { version = "4.0.0-dev", path = "../offchain" }
|
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.10.0-dev" }
|
|
sc-tracing = { version = "4.0.0-dev", path = "../tracing" }
|
|
sc-sysinfo = { version = "6.0.0-dev", path = "../sysinfo" }
|
|
sc-storage-monitor = { version = "0.1.0", path = "../storage-monitor" }
|
|
tracing = "0.1.29"
|
|
tracing-futures = { version = "0.2.4" }
|
|
async-trait = "0.1.57"
|
|
tokio = { version = "1.22.0", features = ["time", "rt-multi-thread", "parking_lot"] }
|
|
tempfile = "3.1.0"
|
|
directories = "4.0.1"
|
|
static_init = "1.0.3"
|
|
|
|
[dev-dependencies]
|
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
|
substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime/" }
|