Files
pezkuwi-sdk/pezkuwi/runtime/zagros/bridge-primitives/Cargo.toml
T

44 lines
923 B
TOML

[package]
name = "bp-zagros"
description = "Primitives of Zagros runtime."
version = "0.3.0"
authors.workspace = true
edition.workspace = true
license = "Apache-2.0"
repository.workspace = true
[package.metadata.pezkuwi-sdk]
exclude-from-umbrella = true
[lints]
workspace = true
[dependencies]
# Bridge Dependencies
bp-header-chain = { workspace = true }
bp-pezkuwi-core = { workspace = true }
bp-runtime = { workspace = true }
# Substrate Based Dependencies
frame-support = { workspace = true }
sp-api = { workspace = true }
sp-std = { workspace = true }
[features]
default = ["std"]
std = [
"bp-header-chain/std",
"bp-pezkuwi-core/std",
"bp-runtime/std",
"frame-support/std",
"sp-api/std",
"sp-std/std",
]
runtime-benchmarks = [
"bp-header-chain/runtime-benchmarks",
"bp-pezkuwi-core/runtime-benchmarks",
"bp-runtime/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"sp-api/runtime-benchmarks",
]