mirror of
https://github.com/pezkuwichain/pez-minimal-template.git
synced 2026-04-21 23:47:57 +00:00
cf2536b751
This synchronizes the template to the stable2503 branch. Co-authored-by: iulianbarbu <14218860+iulianbarbu@users.noreply.github.com>
24 lines
659 B
TOML
24 lines
659 B
TOML
[package]
|
|
name = "pallet-minimal-template"
|
|
description = "A minimal pallet built with FRAME, part of Polkadot Sdk."
|
|
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 }
|
|
polkadot-sdk = { workspace = true, features = ["experimental", "runtime"], default-features = false }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["codec/std", "polkadot-sdk/std", "scale-info/std"]
|