[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", ] try-runtime = [ "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", ] serde = [] experimental = [] tuples-96 = []