mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 03:27:58 +00:00
d631f1dea8
* add some gum * bump expander * gum * fix all remaining issues * last fixup * Update node/gum/proc-macro/src/lib.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * change * netowrk * fixins * chore * allow optional fmt str + args, prep for expr as kv field * tracing -> gum rename fallout * restrict further * allow multiple levels of field accesses * another round of docs and a slip of the pen * update ADR * fixup lock fiel * use target: instead of target= * minors * fix * chore * Update node/gum/README.md Co-authored-by: Andrei Sandu <54316454+sandreim@users.noreply.github.com> Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> Co-authored-by: Andrei Sandu <54316454+sandreim@users.noreply.github.com>
184 lines
5.1 KiB
TOML
184 lines
5.1 KiB
TOML
[[bin]]
|
|
name = "polkadot"
|
|
path = "src/main.rs"
|
|
|
|
[package]
|
|
name = "polkadot"
|
|
description = "Implementation of a `https://polkadot.network` node in Rust based on the Substrate framework."
|
|
license = "GPL-3.0-only"
|
|
version = "0.9.18"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
rust-version = "1.57.0" # custom profiles
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
polkadot-cli = { path = "cli", features = [ "kusama-native", "westend-native", "rococo-native" ] }
|
|
color-eyre = { version = "0.6.1", default-features = false }
|
|
parity-util-mem = { version = "0.11.0", default-features = false, features = ["jemalloc-global"] }
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2.0.4"
|
|
nix = "0.23.1"
|
|
tempfile = "3.2.0"
|
|
tokio = "1.17.0"
|
|
remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
polkadot-core-primitives = { path = "core-primitives" }
|
|
|
|
[workspace]
|
|
members = [
|
|
"cli",
|
|
"core-primitives",
|
|
"erasure-coding",
|
|
"primitives",
|
|
"primitives/test-helpers",
|
|
"runtime/common",
|
|
"runtime/common/slot_range_helper",
|
|
"runtime/metrics",
|
|
"runtime/parachains",
|
|
"runtime/polkadot",
|
|
"runtime/polkadot/constants",
|
|
"runtime/kusama",
|
|
"runtime/kusama/constants",
|
|
"runtime/rococo",
|
|
"runtime/rococo/constants",
|
|
"runtime/westend",
|
|
"runtime/westend/constants",
|
|
"runtime/test-runtime",
|
|
"runtime/test-runtime/constants",
|
|
"statement-table",
|
|
"xcm",
|
|
"xcm/xcm-builder",
|
|
"xcm/xcm-executor",
|
|
"xcm/xcm-executor/integration-tests",
|
|
"xcm/xcm-simulator",
|
|
"xcm/xcm-simulator/example",
|
|
"xcm/xcm-simulator/fuzzer",
|
|
"xcm/pallet-xcm",
|
|
"xcm/pallet-xcm-benchmarks",
|
|
"xcm/procedural",
|
|
"node/client",
|
|
"node/collation-generation",
|
|
"node/core/approval-voting",
|
|
"node/core/av-store",
|
|
"node/core/backing",
|
|
"node/core/bitfield-signing",
|
|
"node/core/candidate-validation",
|
|
"node/core/chain-api",
|
|
"node/core/chain-selection",
|
|
"node/core/dispute-coordinator",
|
|
"node/core/parachains-inherent",
|
|
"node/core/provisioner",
|
|
"node/core/pvf",
|
|
"node/core/pvf-checker",
|
|
"node/core/runtime-api",
|
|
"node/network/approval-distribution",
|
|
"node/network/bridge",
|
|
"node/network/protocol",
|
|
"node/network/statement-distribution",
|
|
"node/network/bitfield-distribution",
|
|
"node/network/availability-distribution",
|
|
"node/network/availability-recovery",
|
|
"node/network/collator-protocol",
|
|
"node/network/gossip-support",
|
|
"node/network/dispute-distribution",
|
|
"node/overseer",
|
|
"node/overseer/overseer-gen",
|
|
"node/overseer/overseer-gen/proc-macro",
|
|
"node/malus",
|
|
"node/primitives",
|
|
"node/service",
|
|
"node/subsystem",
|
|
"node/subsystem-types",
|
|
"node/subsystem-test-helpers",
|
|
"node/subsystem-util",
|
|
"node/jaeger",
|
|
"node/gum",
|
|
"node/gum/proc-macro",
|
|
"node/metrics",
|
|
"node/metered-channel",
|
|
"node/test/client",
|
|
"node/test/performance-test",
|
|
"node/test/service",
|
|
"node/zombienet-backchannel",
|
|
"rpc",
|
|
"parachain",
|
|
"parachain/test-parachains",
|
|
"parachain/test-parachains/adder",
|
|
"parachain/test-parachains/adder/collator",
|
|
"parachain/test-parachains/halt",
|
|
"parachain/test-parachains/undying",
|
|
"parachain/test-parachains/undying/collator",
|
|
"utils/staking-miner",
|
|
"utils/remote-ext-tests/bags-list",
|
|
"utils/generate-bags",
|
|
]
|
|
|
|
# We want to be able to build the bridge relayer without pulling it (and all of its
|
|
# dependencies into the Polkadot workspace)
|
|
exclude = ["bridges/relays/bin-substrate", "bridges/bin/rialto/runtime", "bridges/bin/millau/runtime"]
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
[profile.release]
|
|
# Polkadot runtime requires unwinding.
|
|
panic = "unwind"
|
|
opt-level = 3
|
|
|
|
# make sure dev builds with backtrace do
|
|
# not slow us down
|
|
[profile.dev.package.backtrace]
|
|
inherits = "release"
|
|
|
|
[profile.production]
|
|
inherits = "release"
|
|
lto = true
|
|
codegen-units = 1
|
|
|
|
[profile.testnet]
|
|
inherits = "release"
|
|
debug = 1 # debug symbols are useful for profilers
|
|
debug-assertions = true
|
|
overflow-checks = true
|
|
|
|
[features]
|
|
runtime-benchmarks= [ "polkadot-cli/runtime-benchmarks" ]
|
|
try-runtime = [ "polkadot-cli/try-runtime" ]
|
|
fast-runtime = [ "polkadot-cli/fast-runtime" ]
|
|
runtime-metrics = [ "polkadot-cli/runtime-metrics" ]
|
|
pyroscope = ["polkadot-cli/pyroscope"]
|
|
|
|
# Configuration for building a .deb package - for use with `cargo-deb`
|
|
[package.metadata.deb]
|
|
name = "polkadot"
|
|
extended-description = "Implementation of a https://polkadot.network node in Rust based on the Substrate framework."
|
|
section = "misc"
|
|
maintainer = "martin@parity.io"
|
|
license-file = ["LICENSE", "0"]
|
|
# https://www.debian.org/doc/debian-policy/ch-maintainerscripts.html
|
|
maintainer-scripts = "scripts/packaging/deb-maintainer-scripts"
|
|
assets = [
|
|
["target/release/polkadot", "/usr/bin/", "755"],
|
|
["scripts/packaging/polkadot.service", "/lib/systemd/system/", "644"]
|
|
]
|
|
conf-files = [
|
|
"/etc/default/polkadot"
|
|
]
|
|
|
|
# Configuration for building an .rpm package - for use with `cargo-rpm`
|
|
[package.metadata.rpm]
|
|
package = "polkadot"
|
|
|
|
[package.metadata.rpm.cargo]
|
|
buildflags = ["--release"]
|
|
|
|
[package.metadata.rpm.targets]
|
|
polkadot = { path = "/usr/bin/polkadot" }
|
|
|
|
[package.metadata.rpm.files]
|
|
"../scripts/packaging/polkadot.service" = { path = "/usr/lib/systemd/system/polkadot.service", mode = "644" }
|
|
|
|
[package.metadata.spellcheck]
|
|
config = "./scripts/gitlab/spellcheck.toml"
|