mirror of
https://github.com/pezkuwichain/pez-teyrchain-template.git
synced 2026-04-22 02:07:57 +00:00
32 lines
764 B
TOML
32 lines
764 B
TOML
[package]
|
|
name = "pallet-teyrchain-template"
|
|
description = "FRAME pallet template for defining custom runtime logic."
|
|
version = "0.0.0"
|
|
license = "Unlicense"
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive"], workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
|
|
frame = { workspace = true, default-features = false, features = [
|
|
"experimental",
|
|
"runtime",
|
|
] }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
runtime-benchmarks = ["frame/runtime-benchmarks"]
|
|
std = ["codec/std", "frame/std", "scale-info/std"]
|
|
try-runtime = ["frame/try-runtime"]
|