Files
docs/sdk/packages/guides/first-pallet/Cargo.toml
T
pezkuwichain b4dfaaf5bb docs: add Pezkuwi-SDK documentation
- Technical documentation
- SDK guides
- Architecture overview
- Whitepaper
- Contributor guides
2025-12-13 05:55:40 +03:00

28 lines
663 B
TOML

[package]
name = "pezkuwi-sdk-docs-first-pallet"
description = "A simple pallet created for the pezkuwi-sdk-docs guides"
version = "0.0.0"
license = "MIT-0"
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 = { workspace = true }
docify = { workspace = true }
frame = { workspace = true, features = ["runtime"] }
scale-info = { workspace = true }
[features]
default = ["std"]
std = ["codec/std", "frame/std", "scale-info/std"]
runtime-benchmarks = ["frame/runtime-benchmarks"]