mirror of
https://github.com/pezkuwichain/pez-solochain-template.git
synced 2026-04-22 03:17:59 +00:00
49 lines
1.1 KiB
TOML
49 lines
1.1 KiB
TOML
[package]
|
|
name = "pallet-template"
|
|
description = "FRAME pallet template for defining custom runtime logic. (polkadot v1.15.0)"
|
|
version = "0.1.0"
|
|
license = "Unlicense"
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { features = [
|
|
"derive",
|
|
], workspace = true }
|
|
scale-info = { features = [
|
|
"derive",
|
|
], workspace = true }
|
|
frame-benchmarking = { optional = true, workspace = true }
|
|
frame-support.workspace = true
|
|
frame-system.workspace = true
|
|
|
|
[dev-dependencies]
|
|
sp-core = { default-features = true, workspace = true }
|
|
sp-io = { default-features = true, workspace = true }
|
|
sp-runtime = { default-features = true, workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"frame-benchmarking?/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"scale-info/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
]
|