mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 17:31:03 +00:00
9b57f2181c
* moved bridge declarations to dedicated folder * Kusama <> Polkadot bridges declaration * support for Kusama <> Polkadot bridge in CLI * update dictionary
32 lines
1.0 KiB
TOML
32 lines
1.0 KiB
TOML
[package]
|
|
name = "bp-bridge-hub-kusama"
|
|
description = "Primitives of BridgeHubRococo parachain runtime."
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
# Bridge Dependencies
|
|
|
|
bp-bridge-hub-cumulus = { path = "../chain-bridge-hub-cumulus", default-features = false }
|
|
bp-runtime = { path = "../../primitives/runtime", default-features = false }
|
|
bp-messages = { path = "../../primitives/messages", default-features = false }
|
|
|
|
# Substrate Based Dependencies
|
|
|
|
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"bp-bridge-hub-cumulus/std",
|
|
"bp-messages/std",
|
|
"bp-runtime/std",
|
|
"frame-support/std",
|
|
"sp-api/std",
|
|
"sp-std/std",
|
|
]
|