mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 18:41:03 +00:00
38 lines
1.1 KiB
TOML
38 lines
1.1 KiB
TOML
[package]
|
|
name = "bp-bridge-hub-cumulus"
|
|
description = "Primitives of BridgeHubRococo parachain runtime."
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
# Bridge Dependencies
|
|
|
|
bp-polkadot-core = { path = "../polkadot-core", default-features = false }
|
|
bp-messages = { path = "../messages", default-features = false }
|
|
bp-runtime = { path = "../runtime", default-features = false }
|
|
|
|
# Substrate Based Dependencies
|
|
|
|
frame-system = { path = "../../../substrate/frame/system", default-features = false }
|
|
frame-support = { path = "../../../substrate/frame/support", default-features = false }
|
|
sp-api = { path = "../../../substrate/primitives/api", default-features = false }
|
|
sp-std = { path = "../../../substrate/primitives/std", default-features = false }
|
|
|
|
# Polkadot Dependencies
|
|
polkadot-primitives = { path = "../../../polkadot/primitives", default-features = false }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"bp-messages/std",
|
|
"bp-polkadot-core/std",
|
|
"bp-runtime/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"polkadot-primitives/std",
|
|
"sp-api/std",
|
|
"sp-std/std",
|
|
]
|