8c4fcb3288
Replace all docs.rs documentation URLs with documentation.workspace = true to inherit from the workspace's docs.pezkuwichain.io URL.
31 lines
779 B
TOML
31 lines
779 B
TOML
[package]
|
|
name = "pezpallet-minimal-template"
|
|
description = "A minimal pezpallet built with FRAME, part of Pezkuwi Sdk."
|
|
version = "0.0.0"
|
|
license = "Unlicense"
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive"], workspace = true }
|
|
pezkuwi-sdk = { workspace = true, default-features = false, features = [
|
|
"experimental",
|
|
"runtime",
|
|
] }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["codec/std", "pezkuwi-sdk/std", "scale-info/std"]
|
|
runtime-benchmarks = ["pezkuwi-sdk/runtime-benchmarks"]
|