172 lines
5.2 KiB
TOML
172 lines
5.2 KiB
TOML
[package]
|
|
name = "pezkuwi-test-runtime"
|
|
build = "build.rs"
|
|
publish = false
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive"], workspace = true }
|
|
log = { workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
serde = { workspace = true }
|
|
|
|
frame-election-provider-support = { workspace = true }
|
|
sp-api = { workspace = true }
|
|
sp-authority-discovery = { workspace = true }
|
|
sp-block-builder = { workspace = true }
|
|
sp-consensus-babe = { workspace = true }
|
|
sp-consensus-beefy = { workspace = true }
|
|
sp-core = { workspace = true }
|
|
sp-genesis-builder = { workspace = true }
|
|
sp-inherents = { workspace = true }
|
|
sp-io = { workspace = true }
|
|
sp-mmr-primitives = { workspace = true }
|
|
sp-offchain = { workspace = true }
|
|
sp-runtime = { workspace = true }
|
|
sp-session = { workspace = true }
|
|
sp-staking = { workspace = true }
|
|
sp-transaction-pool = { workspace = true }
|
|
sp-version = { workspace = true }
|
|
|
|
frame-executive = { workspace = true }
|
|
frame-support = { workspace = true }
|
|
frame-system = { workspace = true }
|
|
frame-system-rpc-runtime-api = { workspace = true }
|
|
pallet-authority-discovery = { workspace = true }
|
|
pallet-authorship = { workspace = true }
|
|
pallet-babe = { workspace = true }
|
|
pallet-balances = { workspace = true }
|
|
pallet-grandpa = { workspace = true }
|
|
pallet-indices = { workspace = true }
|
|
pallet-offences = { workspace = true }
|
|
pallet-session = { workspace = true }
|
|
pallet-staking = { workspace = true }
|
|
pallet-staking-reward-curve = { workspace = true, default-features = true }
|
|
pallet-sudo = { workspace = true }
|
|
pallet-timestamp = { workspace = true }
|
|
pallet-transaction-payment = { workspace = true }
|
|
pallet-transaction-payment-rpc-runtime-api = { workspace = true }
|
|
pallet-vesting = { workspace = true }
|
|
test-runtime-constants = { workspace = true }
|
|
|
|
pallet-xcm = { workspace = true }
|
|
pezkuwi-primitives = { workspace = true }
|
|
pezkuwi-runtime-common = { workspace = true }
|
|
pezkuwi-runtime-teyrchains = { workspace = true }
|
|
xcm = { workspace = true }
|
|
xcm-builder = { workspace = true }
|
|
xcm-executor = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
substrate-wasm-builder = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
no_std = []
|
|
|
|
runtime-metrics = [
|
|
"pezkuwi-runtime-teyrchains/runtime-metrics",
|
|
"sp-io/with-tracing",
|
|
]
|
|
std = [
|
|
"codec/std",
|
|
"frame-election-provider-support/std",
|
|
"frame-executive/std",
|
|
"frame-support/std",
|
|
"frame-system-rpc-runtime-api/std",
|
|
"frame-system/std",
|
|
"log/std",
|
|
"pallet-authority-discovery/std",
|
|
"pallet-authorship/std",
|
|
"pallet-babe/std",
|
|
"pallet-balances/std",
|
|
"pallet-grandpa/std",
|
|
"pallet-indices/std",
|
|
"pallet-offences/std",
|
|
"pallet-session/std",
|
|
"pallet-staking/std",
|
|
"pallet-sudo/std",
|
|
"pallet-timestamp/std",
|
|
"pallet-transaction-payment-rpc-runtime-api/std",
|
|
"pallet-transaction-payment/std",
|
|
"pallet-vesting/std",
|
|
"pallet-xcm/std",
|
|
"pezkuwi-primitives/std",
|
|
"pezkuwi-runtime-common/std",
|
|
"pezkuwi-runtime-teyrchains/std",
|
|
"scale-info/std",
|
|
"serde/std",
|
|
"sp-api/std",
|
|
"sp-authority-discovery/std",
|
|
"sp-block-builder/std",
|
|
"sp-consensus-babe/std",
|
|
"sp-consensus-beefy/std",
|
|
"sp-core/std",
|
|
"sp-genesis-builder/std",
|
|
"sp-inherents/std",
|
|
"sp-io/std",
|
|
"sp-mmr-primitives/std",
|
|
"sp-offchain/std",
|
|
"sp-runtime/std",
|
|
"sp-session/std",
|
|
"sp-staking/std",
|
|
"sp-transaction-pool/std",
|
|
"sp-version/std",
|
|
"test-runtime-constants/std",
|
|
"xcm-builder/std",
|
|
"xcm-executor/std",
|
|
"xcm/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"frame-election-provider-support/runtime-benchmarks",
|
|
"frame-executive/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system-rpc-runtime-api/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"pallet-authority-discovery/runtime-benchmarks",
|
|
"pallet-authorship/runtime-benchmarks",
|
|
"pallet-babe/runtime-benchmarks",
|
|
"pallet-balances/runtime-benchmarks",
|
|
"pallet-grandpa/runtime-benchmarks",
|
|
"pallet-indices/runtime-benchmarks",
|
|
"pallet-offences/runtime-benchmarks",
|
|
"pallet-session/runtime-benchmarks",
|
|
"pallet-staking-reward-curve/runtime-benchmarks",
|
|
"pallet-staking/runtime-benchmarks",
|
|
"pallet-sudo/runtime-benchmarks",
|
|
"pallet-timestamp/runtime-benchmarks",
|
|
"pallet-transaction-payment-rpc-runtime-api/runtime-benchmarks",
|
|
"pallet-transaction-payment/runtime-benchmarks",
|
|
"pallet-vesting/runtime-benchmarks",
|
|
"pallet-xcm/runtime-benchmarks",
|
|
"pezkuwi-primitives/runtime-benchmarks",
|
|
"pezkuwi-runtime-common/runtime-benchmarks",
|
|
"pezkuwi-runtime-teyrchains/runtime-benchmarks",
|
|
"sp-api/runtime-benchmarks",
|
|
"sp-authority-discovery/runtime-benchmarks",
|
|
"sp-block-builder/runtime-benchmarks",
|
|
"sp-consensus-babe/runtime-benchmarks",
|
|
"sp-consensus-beefy/runtime-benchmarks",
|
|
"sp-genesis-builder/runtime-benchmarks",
|
|
"sp-inherents/runtime-benchmarks",
|
|
"sp-io/runtime-benchmarks",
|
|
"sp-mmr-primitives/runtime-benchmarks",
|
|
"sp-offchain/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
"sp-session/runtime-benchmarks",
|
|
"sp-staking/runtime-benchmarks",
|
|
"sp-transaction-pool/runtime-benchmarks",
|
|
"sp-version/runtime-benchmarks",
|
|
"substrate-wasm-builder/runtime-benchmarks",
|
|
"test-runtime-constants/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
"xcm/runtime-benchmarks",
|
|
]
|