mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 20:21:03 +00:00
59882a7343
* added Rococo BH <> Rococo Bulletin bridge * init-bridge support * allow customising finality-related runtime APIs * revert me * use Rococo/BridgeHubRococo pretending to be a Polkadot/BridgeHubPolkadot in Rococo <> RococoBulletin bridge * Revert "revert me" This reverts commit 90c598d9d50a25e7182c97eee7818bf8d4bc404c. * Revert "allow customising finality-related runtime APIs" This reverts commit b39c32c34acddfd0b919042122e0e667470bd0a4. * fmt * WITH_BRIDGE_ROCOCO_TO_BULLETIN_MESSAGES_PALLET_INDEX * regenerate bulletin chain runtime (pallet indices have changed) * fx WITH_BRIDGE_ROCOCO_TO_BULLETIN_MESSAGES_PALLET_INDEX constant because of latest changes * also change indices in runtime * fmt * clippy
64 lines
2.6 KiB
TOML
64 lines
2.6 KiB
TOML
[package]
|
|
name = "substrate-relay"
|
|
version = "1.0.1"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
async-std = "1.9.0"
|
|
async-trait = "0.1"
|
|
codec = { package = "parity-scale-codec", version = "3.1.5" }
|
|
env_logger = "0.10"
|
|
futures = "0.3.29"
|
|
hex = "0.4"
|
|
log = "0.4.20"
|
|
num-format = "0.4"
|
|
num-traits = "0.2"
|
|
rbtag = "0.3"
|
|
structopt = "0.3"
|
|
signal-hook = "0.3.15"
|
|
signal-hook-async-std = "0.2.2"
|
|
strum = { version = "0.25.0", features = ["derive"] }
|
|
|
|
# Bridge dependencies
|
|
bp-bridge-hub-polkadot = { path = "../../primitives/chain-bridge-hub-polkadot" }
|
|
bp-bridge-hub-rococo = { path = "../../primitives/chain-bridge-hub-rococo" }
|
|
bp-header-chain = { path = "../../primitives/header-chain" }
|
|
bp-messages = { path = "../../primitives/messages" }
|
|
bp-parachains = { path = "../../primitives/parachains" }
|
|
bp-polkadot-bulletin = { path = "../../primitives/chain-polkadot-bulletin" }
|
|
bp-polkadot = { path = "../../primitives/chain-polkadot" }
|
|
bp-polkadot-core = { path = "../../primitives/polkadot-core" }
|
|
bp-rococo = { path = "../../primitives/chain-rococo" }
|
|
bp-runtime = { path = "../../primitives/runtime" }
|
|
bridge-runtime-common = { path = "../../bin/runtime-common" }
|
|
pallet-bridge-parachains = { path = "../../modules/parachains" }
|
|
parachains-relay = { path = "../parachains" }
|
|
relay-bridge-hub-kusama-client = { path = "../client-bridge-hub-kusama" }
|
|
relay-bridge-hub-polkadot-client = { path = "../client-bridge-hub-polkadot" }
|
|
relay-bridge-hub-rococo-client = { path = "../client-bridge-hub-rococo" }
|
|
relay-bridge-hub-westend-client = { path = "../client-bridge-hub-westend" }
|
|
relay-kusama-client = { path = "../client-kusama" }
|
|
relay-polkadot-client = { path = "../client-polkadot" }
|
|
relay-polkadot-bulletin-client = { path = "../client-polkadot-bulletin" }
|
|
relay-rococo-client = { path = "../client-rococo" }
|
|
relay-substrate-client = { path = "../client-substrate" }
|
|
relay-utils = { path = "../utils" }
|
|
relay-westend-client = { path = "../client-westend" }
|
|
substrate-relay-helper = { path = "../lib-substrate-relay" }
|
|
|
|
# Substrate Dependencies
|
|
|
|
frame-support = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
|
|
[dev-dependencies]
|
|
bp-test-utils = { path = "../../primitives/test-utils" }
|
|
hex-literal = "0.4"
|
|
sp-keyring = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
tempfile = "3.8"
|
|
finality-grandpa = { version = "0.16.2" }
|