bfc2cc5284
Replace all docs.rs documentation URLs with documentation.workspace = true to inherit from the workspace's docs.pezkuwichain.io URL.
63 lines
1.6 KiB
TOML
63 lines
1.6 KiB
TOML
[package]
|
|
name = "pezpallet-example-view-functions"
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Pallet to demonstrate the usage of view functions to query pezpallet state"
|
|
documentation.workspace = true
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { default-features = false, workspace = true }
|
|
frame-metadata = { features = ["current"], workspace = true }
|
|
log = { workspace = true }
|
|
scale-info = { default-features = false, features = [
|
|
"derive",
|
|
], workspace = true }
|
|
|
|
pezframe-support = { default-features = false, workspace = true }
|
|
pezframe-system = { default-features = false, workspace = true }
|
|
|
|
pezsp-core = { default-features = false, workspace = true }
|
|
pezsp-io = { default-features = false, workspace = true }
|
|
pezsp-metadata-ir = { default-features = false, workspace = true }
|
|
pezsp-runtime = { default-features = false, workspace = true }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = { workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"frame-metadata/std",
|
|
"log/std",
|
|
"pezframe-support/std",
|
|
"pezframe-system/std",
|
|
"pezsp-core/std",
|
|
"pezsp-io/std",
|
|
"pezsp-metadata-ir/std",
|
|
"pezsp-runtime/std",
|
|
"scale-info/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezframe-system/runtime-benchmarks",
|
|
"pezsp-io/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"pezframe-support/try-runtime",
|
|
"pezframe-system/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
]
|