mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 05:47:58 +00:00
fc2cba1805
* subsystem tweaks for higher scale Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> * Adjust queue sizes Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> * Orchestra 0.0.5 Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> * cargo lock Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> --------- Signed-off-by: Andrei Sandu <andrei-mihail@parity.io>
42 lines
1.5 KiB
TOML
42 lines
1.5 KiB
TOML
[package]
|
|
name = "polkadot-overseer"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
futures = "0.3.21"
|
|
futures-timer = "3.0.2"
|
|
parking_lot = "0.12.0"
|
|
polkadot-node-network-protocol = { path = "../network/protocol" }
|
|
polkadot-node-primitives = { path = "../primitives" }
|
|
polkadot-node-subsystem-types = { path = "../subsystem-types" }
|
|
polkadot-node-metrics = { path = "../metrics" }
|
|
polkadot-primitives = { path = "../../primitives" }
|
|
orchestra = "0.0.5"
|
|
gum = { package = "tracing-gum", path = "../gum" }
|
|
lru = "0.9"
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
async-trait = "0.1.57"
|
|
tikv-jemalloc-ctl = { version = "0.5.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
metered = { package = "prioritized-metered-channel", version = "0.2.0" }
|
|
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
futures = { version = "0.3.21", features = ["thread-pool"] }
|
|
femme = "2.2.1"
|
|
assert_matches = "1.4.0"
|
|
test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../primitives/test-helpers" }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
tikv-jemalloc-ctl = "0.5.0"
|
|
|
|
[features]
|
|
default = []
|
|
expand = ["orchestra/expand"]
|
|
dotgraph = ["orchestra/dotgraph"]
|
|
jemalloc-allocator = ["dep:tikv-jemalloc-ctl"]
|