mirror of
https://github.com/pezkuwichain/pez-minimal-template.git
synced 2026-04-22 07:57:56 +00:00
48 lines
1.2 KiB
TOML
48 lines
1.2 KiB
TOML
[package]
|
|
name = "minimal-template-runtime"
|
|
description = "A solochain runtime template built with Substrate, part of Polkadot Sdk. (polkadot v1.15.0)"
|
|
version = "0.1.0"
|
|
license = "Unlicense"
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
[dependencies]
|
|
codec = { workspace = true }
|
|
scale-info = { workspace = true }
|
|
frame = { features = ["experimental", "runtime"], workspace = true }
|
|
pallet-balances.workspace = true
|
|
pallet-sudo.workspace = true
|
|
pallet-timestamp.workspace = true
|
|
pallet-transaction-payment.workspace = true
|
|
pallet-transaction-payment-rpc-runtime-api.workspace = true
|
|
sp-genesis-builder.workspace = true
|
|
sp-runtime = { features = ["serde"], workspace = true }
|
|
pallet-minimal-template.workspace = true
|
|
|
|
[build-dependencies]
|
|
substrate-wasm-builder = { optional = true, workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"scale-info/std",
|
|
|
|
"frame/std",
|
|
|
|
"pallet-balances/std",
|
|
"pallet-sudo/std",
|
|
"pallet-timestamp/std",
|
|
"pallet-transaction-payment-rpc-runtime-api/std",
|
|
"pallet-transaction-payment/std",
|
|
|
|
"pallet-minimal-template/std",
|
|
|
|
"sp-genesis-builder/std",
|
|
"sp-runtime/std",
|
|
"substrate-wasm-builder",
|
|
]
|