bfc2cc5284
Replace all docs.rs documentation URLs with documentation.workspace = true to inherit from the workspace's docs.pezkuwichain.io URL.
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
[package]
|
|
name = "people-zagros-emulated-chain"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
description = "People Zagros emulated chain"
|
|
publish = false
|
|
documentation.workspace = true
|
|
repository = { workspace = true }
|
|
homepage = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# Bizinikiwi
|
|
pezframe-support = { workspace = true }
|
|
pezsp-core = { workspace = true }
|
|
|
|
# Pezcumulus
|
|
emulated-integration-tests-common = { workspace = true }
|
|
people-zagros-runtime = { workspace = true }
|
|
pezcumulus-primitives-core = { workspace = true }
|
|
testnet-teyrchains-constants = { features = [
|
|
"zagros",
|
|
], workspace = true, default-features = true }
|
|
teyrchains-common = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"emulated-integration-tests-common/runtime-benchmarks",
|
|
"people-zagros-runtime/runtime-benchmarks",
|
|
"pezcumulus-primitives-core/runtime-benchmarks",
|
|
"pezframe-support/runtime-benchmarks",
|
|
"testnet-teyrchains-constants/runtime-benchmarks",
|
|
"teyrchains-common/runtime-benchmarks",
|
|
]
|