bfc2cc5284
Replace all docs.rs documentation URLs with documentation.workspace = true to inherit from the workspace's docs.pezkuwichain.io URL.
40 lines
946 B
TOML
40 lines
946 B
TOML
[package]
|
|
name = "pezpallet-salary"
|
|
version = "13.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Paymaster"
|
|
readme = "README.md"
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive"], workspace = true }
|
|
frame = { workspace = true, features = ["runtime"] }
|
|
log = { workspace = true }
|
|
pezpallet-ranked-collective = { optional = true, workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"frame/std",
|
|
"log/std",
|
|
"pezpallet-ranked-collective/std",
|
|
"scale-info/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"frame/runtime-benchmarks",
|
|
"pezpallet-ranked-collective/runtime-benchmarks",
|
|
]
|
|
try-runtime = ["frame/try-runtime", "pezpallet-ranked-collective?/try-runtime"]
|