mirror of
https://github.com/pezkuwichain/pezkuwi-runtime-templates.git
synced 2026-04-21 23:47:56 +00:00
30930edda5
* Add zombienet config to release (#158) * Cleanup docs for the release (#160) * Updated documentation to version 1.7.0 * Updated broken links * updated docs to v1.10 (#166) * updated dependencies to v1.10.0 (#165) * Fixed weights for non-XCM related pallets (#149) * add remove proxies to filter (#146) * Fix weights for XCM and Message Queue. (#153) * Fix for PriceForSiblingDelivery (#156) * Fix the FeeManager setting (#159) * better explanation for constants (#167) * better explanation for constants * Removed polkadot launch (#169) * Removed warnings about experimental code. (#170) * Attached audit. * toml sort * changelog and version bump (#174) * changelog and version bump * cargo fmt fix --------- Co-authored-by: Nikita Khateev <nikita.khateev@openzeppelin.com> Co-authored-by: Amar Singh <asinghchrony@protonmail.com>
97 lines
3.0 KiB
TOML
97 lines
3.0 KiB
TOML
[package]
|
|
name = "parachain-template-node"
|
|
authors = { workspace = true }
|
|
build = "build.rs"
|
|
description = "Node compatible with parachain runtime template."
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
publish = false
|
|
repository = { workspace = true }
|
|
version = "1.0.0"
|
|
|
|
[dependencies]
|
|
clap = { workspace = true }
|
|
futures = { workspace = true }
|
|
jsonrpsee = { workspace = true, features = [ "server" ] }
|
|
log = { workspace = true }
|
|
parity-scale-codec = { workspace = true }
|
|
serde = { workspace = true, features = [ "derive" ] }
|
|
serde_json = { workspace = true }
|
|
|
|
# Local
|
|
parachain-template-runtime = { path = "../runtime" }
|
|
|
|
# Substrate
|
|
frame-benchmarking = { workspace = true }
|
|
frame-benchmarking-cli = { workspace = true }
|
|
pallet-transaction-payment-rpc = { workspace = true }
|
|
sc-basic-authorship = { workspace = true }
|
|
sc-chain-spec = { workspace = true }
|
|
sc-cli = { workspace = true }
|
|
sc-client-api = { workspace = true }
|
|
sc-consensus = { workspace = true }
|
|
sc-executor = { workspace = true }
|
|
sc-network = { workspace = true }
|
|
sc-network-sync = { workspace = true }
|
|
sc-offchain = { workspace = true }
|
|
sc-rpc = { workspace = true }
|
|
sc-service = { workspace = true }
|
|
sc-sysinfo = { workspace = true }
|
|
sc-telemetry = { workspace = true }
|
|
sc-tracing = { workspace = true }
|
|
sc-transaction-pool = { workspace = true }
|
|
sc-transaction-pool-api = { workspace = true }
|
|
sp-api = { workspace = true }
|
|
sp-block-builder = { workspace = true }
|
|
sp-blockchain = { workspace = true }
|
|
sp-consensus-aura = { workspace = true }
|
|
sp-core = { workspace = true }
|
|
sp-io = { workspace = true }
|
|
sp-keystore = { workspace = true }
|
|
sp-runtime = { workspace = true }
|
|
sp-timestamp = { workspace = true }
|
|
substrate-frame-rpc-system = { workspace = true }
|
|
substrate-prometheus-endpoint = { workspace = true }
|
|
|
|
# Polkadot
|
|
polkadot-cli = { workspace = true, features = [ "rococo-native" ] }
|
|
polkadot-primitives = { workspace = true }
|
|
xcm = { workspace = true }
|
|
|
|
# Cumulus
|
|
color-print = { workspace = true }
|
|
cumulus-client-cli = { workspace = true }
|
|
cumulus-client-collator = { workspace = true }
|
|
cumulus-client-consensus-aura = { workspace = true }
|
|
cumulus-client-consensus-common = { workspace = true }
|
|
cumulus-client-consensus-proposer = { workspace = true }
|
|
cumulus-client-service = { workspace = true }
|
|
cumulus-primitives-core = { workspace = true }
|
|
cumulus-primitives-parachain-inherent = { workspace = true }
|
|
cumulus-relay-chain-interface = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
substrate-build-script-utils = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
async-backing = []
|
|
experimental = []
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking-cli/runtime-benchmarks",
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"parachain-template-runtime/runtime-benchmarks",
|
|
"polkadot-cli/runtime-benchmarks",
|
|
"polkadot-primitives/runtime-benchmarks",
|
|
"sc-service/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"parachain-template-runtime/try-runtime",
|
|
"polkadot-cli/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|
|
|
|
[lints]
|
|
workspace = true
|