Files
pezkuwi-sdk/templates/minimal/pezpallets/template/Cargo.toml
T
pezkuwichain c96c2ca199 Publish crates to crates.io: FAZ 1 version bumps
Published crates:
- pezframe-support-procedural-tools 10.0.1
- pezframe-benchmarking-cli 32.0.1
- pezframe 0.1.0 (new)
- pezpallet-minimal-template 0.1.0 (new)
- pez-minimal-template-runtime 0.1.1
- pezkuwi-sdk 0.1.2
- yet-another-teyrchain-runtime 0.6.1

Updated workspace Cargo.toml version references to match published versions.
2026-01-02 12:09:24 +03:00

42 lines
986 B
TOML

[package]
name = "pezpallet-minimal-template"
description = "A minimal pezpallet built with FRAME, part of Pezkuwi Sdk."
version = "0.1.0"
license = "Unlicense"
authors.workspace = true
homepage.workspace = true
repository.workspace = true
edition.workspace = true
publish = true
documentation.workspace = true
[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 deps
pezframe-benchmarking = { optional = true, workspace = true }
pezframe-support = { workspace = true }
pezframe-system = { workspace = true }
[features]
default = ["std"]
std = [
"codec/std",
"pezframe-benchmarking?/std",
"pezframe-support/std",
"pezframe-system/std",
"scale-info/std",
]
runtime-benchmarks = [
"pezframe-benchmarking/runtime-benchmarks",
"pezframe-support/runtime-benchmarks",
"pezframe-system/runtime-benchmarks",
]