51 lines
1.1 KiB
TOML
51 lines
1.1 KiB
TOML
[package]
|
|
name = "minimal-template-runtime"
|
|
description = "A solochain runtime template built with Substrate, part of Pezkuwi Sdk."
|
|
version = "0.0.0"
|
|
license = "Unlicense"
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { workspace = true }
|
|
pezkuwi-sdk = { workspace = true, features = [
|
|
"pallet-balances",
|
|
"pallet-sudo",
|
|
"pallet-timestamp",
|
|
"pallet-transaction-payment",
|
|
"pallet-transaction-payment-rpc-runtime-api",
|
|
"runtime",
|
|
] }
|
|
scale-info = { workspace = true }
|
|
serde_json = { workspace = true, default-features = false, features = [
|
|
"alloc",
|
|
] }
|
|
|
|
# local pallet templates
|
|
pallet-minimal-template = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
pezkuwi-sdk = { optional = true, workspace = true, features = [
|
|
"substrate-wasm-builder",
|
|
] }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"pallet-minimal-template/std",
|
|
"pezkuwi-sdk/std",
|
|
"scale-info/std",
|
|
"serde_json/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pallet-minimal-template/runtime-benchmarks",
|
|
"pezkuwi-sdk/runtime-benchmarks",
|
|
]
|