mirror of
https://github.com/pezkuwichain/pez-minimal-template.git
synced 2026-04-21 23:47:57 +00:00
a76e4bf0ed
This synchronizes the template to the stable2412 branch. --------- Signed-off-by: Iulian Barbu <iulian.barbu@parity.io> Co-authored-by: iulianbarbu <14218860+iulianbarbu@users.noreply.github.com> Co-authored-by: Iulian Barbu <iulian.barbu@parity.io>
31 lines
944 B
TOML
31 lines
944 B
TOML
[package]
|
|
name = "minimal-template-runtime"
|
|
description = "A solochain runtime template built with Substrate, part of Polkadot Sdk."
|
|
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 }
|
|
polkadot-sdk = { workspace = true, features = ["pallet-balances", "pallet-sudo", "pallet-timestamp", "pallet-transaction-payment", "pallet-transaction-payment-rpc-runtime-api", "runtime"] }
|
|
serde_json = { workspace = true, default-features = false, features = ["alloc"] }
|
|
pallet-minimal-template.workspace = true
|
|
|
|
[build-dependencies]
|
|
polkadot-sdk = { optional = true, workspace = true, features = ["substrate-wasm-builder"] }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"pallet-minimal-template/std",
|
|
"polkadot-sdk/std",
|
|
"scale-info/std",
|
|
"serde_json/std",
|
|
]
|