mirror of
https://github.com/pezkuwichain/docs.git
synced 2026-04-22 01:57:58 +00:00
b4dfaaf5bb
- Technical documentation - SDK guides - Architecture overview - Whitepaper - Contributor guides
28 lines
663 B
TOML
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"]
|