mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57:58 +00:00
12443589e3
Bumps the known_good_semver group with 1 update: [clap](https://github.com/clap-rs/clap). - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.4.1...v4.4.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: known_good_semver ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
84 lines
3.0 KiB
TOML
84 lines
3.0 KiB
TOML
[package]
|
|
name = "polkadot-cli"
|
|
description = "Polkadot Relay-chain Client Node"
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[package.metadata.wasm-pack.profile.release]
|
|
# `wasm-opt` has some problems on Linux, see
|
|
# https://github.com/rustwasm/wasm-pack/issues/781 etc.
|
|
wasm-opt = false
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.4.2", features = ["derive"], optional = true }
|
|
log = "0.4.17"
|
|
thiserror = "1.0.31"
|
|
futures = "0.3.21"
|
|
pyro = { package = "pyroscope", version = "0.5.3", optional = true }
|
|
pyroscope_pprofrs = { version = "0.2", optional = true }
|
|
|
|
service = { package = "polkadot-service", path = "../node/service", default-features = false, optional = true }
|
|
polkadot-performance-test = { path = "../node/test/performance-test", optional = true }
|
|
|
|
sp-core = { path = "../../substrate/primitives/core" }
|
|
sp-io = { path = "../../substrate/primitives/io" }
|
|
sp-keyring = { path = "../../substrate/primitives/keyring" }
|
|
sp-maybe-compressed-blob = { path = "../../substrate/primitives/maybe-compressed-blob" }
|
|
frame-benchmarking-cli = { path = "../../substrate/utils/frame/benchmarking-cli", optional = true }
|
|
try-runtime-cli = { path = "../../substrate/utils/frame/try-runtime/cli", optional = true }
|
|
sc-cli = { path = "../../substrate/client/cli", optional = true }
|
|
sc-service = { path = "../../substrate/client/service", optional = true }
|
|
polkadot-node-metrics = { path = "../node/metrics" }
|
|
sc-tracing = { path = "../../substrate/client/tracing", optional = true }
|
|
sc-sysinfo = { path = "../../substrate/client/sysinfo" }
|
|
sc-executor = { path = "../../substrate/client/executor" }
|
|
sc-storage-monitor = { path = "../../substrate/client/storage-monitor" }
|
|
|
|
[build-dependencies]
|
|
substrate-build-script-utils = { path = "../../substrate/utils/build-script-utils" }
|
|
|
|
[features]
|
|
default = [ "cli", "db", "full-node" ]
|
|
db = [ "service/db" ]
|
|
cli = [
|
|
"clap",
|
|
"frame-benchmarking-cli",
|
|
"sc-cli",
|
|
"sc-service",
|
|
"sc-tracing",
|
|
"service",
|
|
"try-runtime-cli",
|
|
]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking-cli?/runtime-benchmarks",
|
|
"polkadot-node-metrics/runtime-benchmarks",
|
|
"polkadot-performance-test?/runtime-benchmarks",
|
|
"sc-service?/runtime-benchmarks",
|
|
"service/runtime-benchmarks",
|
|
]
|
|
full-node = [ "service/full-node" ]
|
|
try-runtime = [ "service/try-runtime", "try-runtime-cli/try-runtime" ]
|
|
fast-runtime = [ "service/fast-runtime" ]
|
|
pyroscope = [ "pyro", "pyroscope_pprofrs" ]
|
|
hostperfcheck = [ "polkadot-performance-test" ]
|
|
|
|
# Configure the native runtimes to use. Polkadot is enabled by default.
|
|
#
|
|
# Validators require the native runtime currently
|
|
polkadot-native = [ "service/polkadot-native" ]
|
|
kusama-native = [ "service/kusama-native" ]
|
|
westend-native = [ "service/westend-native" ]
|
|
rococo-native = [ "service/rococo-native" ]
|
|
|
|
malus = [ "full-node", "service/malus" ]
|
|
runtime-metrics = [
|
|
"polkadot-node-metrics/runtime-metrics",
|
|
"service/runtime-metrics",
|
|
]
|
|
network-protocol-staging = [ "service/network-protocol-staging" ]
|