mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 08:47:57 +00:00
dcda0e50f5
* Fix build profiles Closes https://github.com/paritytech/polkadot-sdk/issues/1155 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Manually set version to 1.0.0 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Use workspace repo Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * 'Authors and Edition from workspace Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
119 lines
4.8 KiB
TOML
119 lines
4.8 KiB
TOML
[package]
|
|
name = "node-template-runtime"
|
|
version = "4.0.0-dev"
|
|
description = "A fresh FRAME-based Substrate node, ready for hacking."
|
|
authors = ["Substrate DevHub <https://github.com/substrate-developer-hub>"]
|
|
homepage = "https://substrate.io/"
|
|
edition.workspace = true
|
|
license = "MIT-0"
|
|
publish = false
|
|
repository = "https://github.com/substrate-developer-hub/substrate-node-template/"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
|
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
|
|
|
pallet-aura = { path = "../../../frame/aura", default-features = false}
|
|
pallet-balances = { path = "../../../frame/balances", default-features = false}
|
|
frame-support = { path = "../../../frame/support", default-features = false}
|
|
pallet-grandpa = { path = "../../../frame/grandpa", default-features = false}
|
|
pallet-sudo = { path = "../../../frame/sudo", default-features = false}
|
|
frame-system = { path = "../../../frame/system", default-features = false}
|
|
frame-try-runtime = { path = "../../../frame/try-runtime", default-features = false, optional = true }
|
|
pallet-timestamp = { path = "../../../frame/timestamp", default-features = false}
|
|
pallet-transaction-payment = { path = "../../../frame/transaction-payment", default-features = false}
|
|
frame-executive = { path = "../../../frame/executive", default-features = false}
|
|
sp-api = { path = "../../../primitives/api", default-features = false}
|
|
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false}
|
|
sp-consensus-aura = { path = "../../../primitives/consensus/aura", default-features = false}
|
|
sp-consensus-grandpa = { path = "../../../primitives/consensus/grandpa", default-features = false}
|
|
sp-core = { path = "../../../primitives/core", default-features = false}
|
|
sp-inherents = { path = "../../../primitives/inherents", default-features = false}
|
|
sp-offchain = { path = "../../../primitives/offchain", default-features = false}
|
|
sp-runtime = { path = "../../../primitives/runtime", default-features = false}
|
|
sp-session = { path = "../../../primitives/session", default-features = false}
|
|
sp-std = { path = "../../../primitives/std", default-features = false}
|
|
sp-storage = { path = "../../../primitives/storage", default-features = false}
|
|
sp-transaction-pool = { path = "../../../primitives/transaction-pool", default-features = false}
|
|
sp-version = { path = "../../../primitives/version", default-features = false}
|
|
|
|
# Used for the node template's RPCs
|
|
frame-system-rpc-runtime-api = { path = "../../../frame/system/rpc/runtime-api", default-features = false}
|
|
pallet-transaction-payment-rpc-runtime-api = { path = "../../../frame/transaction-payment/rpc/runtime-api", default-features = false}
|
|
|
|
# Used for runtime benchmarking
|
|
frame-benchmarking = { path = "../../../frame/benchmarking", default-features = false, optional = true }
|
|
frame-system-benchmarking = { path = "../../../frame/system/benchmarking", default-features = false, optional = true }
|
|
|
|
# Local Dependencies
|
|
pallet-template = { path = "../pallets/template", default-features = false}
|
|
|
|
[build-dependencies]
|
|
substrate-wasm-builder = { path = "../../../utils/wasm-builder", optional = true }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"codec/std",
|
|
"frame-benchmarking?/std",
|
|
"frame-executive/std",
|
|
"frame-support/std",
|
|
"frame-system-benchmarking?/std",
|
|
"frame-system-rpc-runtime-api/std",
|
|
"frame-system/std",
|
|
"frame-try-runtime?/std",
|
|
"pallet-aura/std",
|
|
"pallet-balances/std",
|
|
"pallet-grandpa/std",
|
|
"pallet-sudo/std",
|
|
"pallet-template/std",
|
|
"pallet-timestamp/std",
|
|
"pallet-transaction-payment-rpc-runtime-api/std",
|
|
"pallet-transaction-payment/std",
|
|
"scale-info/std",
|
|
"sp-api/std",
|
|
"sp-block-builder/std",
|
|
"sp-consensus-aura/std",
|
|
"sp-consensus-grandpa/std",
|
|
"sp-core/std",
|
|
"sp-inherents/std",
|
|
"sp-offchain/std",
|
|
"sp-runtime/std",
|
|
"sp-session/std",
|
|
"sp-std/std",
|
|
"sp-storage/std",
|
|
"sp-transaction-pool/std",
|
|
"sp-version/std",
|
|
"substrate-wasm-builder",
|
|
]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system-benchmarking/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"pallet-balances/runtime-benchmarks",
|
|
"pallet-grandpa/runtime-benchmarks",
|
|
"pallet-sudo/runtime-benchmarks",
|
|
"pallet-template/runtime-benchmarks",
|
|
"pallet-timestamp/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"frame-executive/try-runtime",
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"frame-try-runtime/try-runtime",
|
|
"pallet-aura/try-runtime",
|
|
"pallet-balances/try-runtime",
|
|
"pallet-grandpa/try-runtime",
|
|
"pallet-sudo/try-runtime",
|
|
"pallet-template/try-runtime",
|
|
"pallet-timestamp/try-runtime",
|
|
"pallet-transaction-payment/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|
|
experimental = [ "pallet-aura/experimental" ]
|