mirror of
https://github.com/pezkuwichain/pez-minimal-template.git
synced 2026-04-21 23:47:57 +00:00
28 lines
793 B
TOML
28 lines
793 B
TOML
[package]
|
|
name = "pallet-minimal-template"
|
|
description = "A minimal pallet built with FRAME, part of Polkadot Sdk. (polkadot v1.13.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 = { package = "parity-scale-codec", version = "3.6.12", features = [
|
|
"derive",
|
|
], default-features = false }
|
|
scale-info = { version = "2.11.1", default-features = false, features = [
|
|
"derive",
|
|
] }
|
|
frame = { version = "0.4.0", package = "polkadot-sdk-frame", default-features = false, features = ["experimental", "runtime"] }
|
|
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["codec/std", "frame/std", "scale-info/std"]
|