mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 13:21:01 +00:00
0bbd2b20a2
* polkadot-staging for v1.0.0 * Add polkadot bulletin chain primitives (#2542) * add polkadot bulletin chain primitives * also impl ChainWithMessages * clippy * instead of requiring sp_std::vec::Vec import when using runtime API generation macro, let's use full type path directly in macro (#2551) * Polkadot Bulletin Chain client (#2552) * relay-polkadot-bulletin-client * generate Polkadot Bulletin Chain Runtime * Add relays that will be used in Polkadot Bulletin <> Polkadot.BH bridge (#2556) * added Polkadot.BH <> Polkadot Bulletin chain relays * uncommented ED stuff * complex PolkadotBulletin <> Polkadot.BH relay * removed TODO * spelling * prepare refund extension infra to add refund extension for messages from standalone chain (#2558) * prepare refund extension infra to add refund extension for messages from standalone chain * spelling * apply adapter to fix compilation * clippy * added POLKADOT_BULLETIN_CHAIN_ID constant * RefundBridgedGrandpaMessages to refund transaction costs for messages coming to/from bridged standalone/relay chain (#2566) * RefundBridgedGrandpaMessages to refund transaction costs for messages coming to/from bridged standalone/relay chain * clippy * fix compilation * fix codec dependency (#2567) * Support message relay limits override (#2570) * support message relay limits overrides for bridges * spelling * export EXTRA_STORAGE_PROOF_SIZE for Polkadot Bulletin (#2572)
79 lines
3.7 KiB
TOML
79 lines
3.7 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" }
|
|
futures = "0.3.28"
|
|
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-header-chain = { path = "../../primitives/header-chain" }
|
|
bp-messages = { path = "../../primitives/messages" }
|
|
bp-parachains = { path = "../../primitives/parachains" }
|
|
bp-millau = { path = "../../primitives/chain-millau" }
|
|
bp-polkadot-bulletin = { path = "../../primitives/chain-polkadot-bulletin" }
|
|
bp-polkadot-core = { path = "../../primitives/polkadot-core" }
|
|
bp-rialto = { path = "../../primitives/chain-rialto" }
|
|
bp-rialto-parachain = { path = "../../primitives/chain-rialto-parachain" }
|
|
bp-runtime = { path = "../../primitives/runtime" }
|
|
bridge-runtime-common = { path = "../../bin/runtime-common" }
|
|
millau-runtime = { path = "../../bin/millau/runtime" }
|
|
pallet-bridge-parachains = { path = "../../modules/parachains" }
|
|
parachains-relay = { path = "../parachains" }
|
|
relay-millau-client = { path = "../client-millau" }
|
|
relay-rialto-client = { path = "../client-rialto" }
|
|
relay-rialto-parachain-client = { path = "../client-rialto-parachain" }
|
|
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-wococo-client = { path = "../client-bridge-hub-wococo" }
|
|
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" }
|
|
relay-wococo-client = { path = "../client-wococo" }
|
|
rialto-runtime = { path = "../../bin/rialto/runtime" }
|
|
# we are not using this runtime to craft call or transactions, but we still need it
|
|
# to prepare large XCM messages
|
|
rialto-parachain-runtime = { path = "../../bin/rialto-parachain/runtime" }
|
|
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" }
|
|
|
|
# Polkadot Dependencies
|
|
polkadot-parachain-primitives = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
polkadot-primitives = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
xcm = { package = "staging-xcm", git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
xcm-executor = { package = "staging-xcm-executor", 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" }
|