mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 16:21:02 +00:00
65c2c0ccce
* cumulus: 4e95228291
polkadot: 975e780ae0d988dc033f400ba822d14b326ee5b9
substrate: 89fcb3e4f62d221d4e161a437768e77d6265889e
* fix refs
* sync changes from https://github.com/paritytech/polkadot/pull/3828
* sync changes from https://github.com/paritytech/polkadot/pull/4387
* sync changes from https://github.com/paritytech/polkadot/pull/3940
* sync with changes from https://github.com/paritytech/polkadot/pull/4493
* sync with changes from https://github.com/paritytech/polkadot/pull/4958
* sync with changes from https://github.com/paritytech/polkadot/pull/3889
* sync with changes from https://github.com/paritytech/polkadot/pull/5033
* sync with changes from https://github.com/paritytech/polkadot/pull/5065
* compilation fixes
* fixed prometheus endpoint startup (it now requires to be spawned within tokio context)
53 lines
2.0 KiB
TOML
53 lines
2.0 KiB
TOML
[package]
|
|
name = "substrate-relay-helper"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
thiserror = "1.0.26"
|
|
async-std = "1.9.0"
|
|
async-trait = "0.1.42"
|
|
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
|
futures = "0.3.12"
|
|
num-traits = "0.2"
|
|
log = "0.4.14"
|
|
|
|
# Bridge dependencies
|
|
|
|
bp-header-chain = { path = "../../primitives/header-chain" }
|
|
bridge-runtime-common = { path = "../../bin/runtime-common" }
|
|
|
|
finality-grandpa = { version = "0.15.0" }
|
|
finality-relay = { path = "../finality" }
|
|
relay-utils = { path = "../utils" }
|
|
messages-relay = { path = "../messages" }
|
|
relay-substrate-client = { path = "../client-substrate" }
|
|
|
|
pallet-bridge-grandpa = { path = "../../modules/grandpa" }
|
|
pallet-bridge-messages = { path = "../../modules/messages" }
|
|
|
|
bp-runtime = { path = "../../primitives/runtime" }
|
|
bp-messages = { path = "../../primitives/messages" }
|
|
|
|
# Substrate Dependencies
|
|
|
|
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[dev-dependencies]
|
|
bp-millau = { path = "../../primitives/chain-millau" }
|
|
bp-rialto = { path = "../../primitives/chain-rialto" }
|
|
bp-rococo = { path = "../../primitives/chain-rococo" }
|
|
bp-wococo = { path = "../../primitives/chain-wococo" }
|
|
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
relay-rococo-client = { path = "../client-rococo" }
|
|
relay-wococo-client = { path = "../client-wococo" }
|
|
rialto-runtime = { path = "../../bin/rialto/runtime" }
|