mirror of
https://github.com/pezkuwichain/pezkuwi-runtime-templates.git
synced 2026-04-22 05:37:57 +00:00
7d53d4f679
* run toml sort and add script for it * add ci * try patch * try fix * add file permissions * check if installation state persists or starts from scratch every time * Revert "check if installation state persists or starts from scratch every time" This reverts commit 45e7aae8d2f18cbe1a78482d234b98fcfbe8b6ae. * Apply suggestions from code review * clean * fix * try revert * fix
47 lines
1.0 KiB
TOML
47 lines
1.0 KiB
TOML
[package]
|
|
name = "pallet-template"
|
|
authors = { workspace = true }
|
|
description = "FRAME pallet template"
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
version = "0.1.0"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = [ "x86_64-unknown-linux-gnu" ]
|
|
|
|
[dependencies]
|
|
parity-scale-codec = { workspace = true, features = [ "derive" ] }
|
|
scale-info = { workspace = true }
|
|
|
|
# Substrate
|
|
frame-benchmarking = { workspace = true, optional = true }
|
|
frame-support = { workspace = true }
|
|
frame-system = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
serde = { workspace = true }
|
|
|
|
# Substrate
|
|
sp-core = { workspace = true }
|
|
sp-io = { workspace = true }
|
|
sp-runtime = { workspace = true }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"frame-benchmarking/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"parity-scale-codec/std",
|
|
"scale-info/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"frame-support/try-runtime",
|
|
]
|