mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-17 14:45:41 +00:00
f87053c1cb
* finality proofs relay * SyncHeader::is_mandatory * empty ancestry proof * logs * fixed submit condition * fixed wrong split index * tick comment * recent_finality_proofs * basic finality loop tests * removed obsolete files * rename files in substrate relay * fmt * clippy * fixed TODOs * clippy * stop syncing if target node is out of sync * more clippy * more clippy * Update relays/finality-relay/src/finality_loop.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * Update relays/finality-relay/src/finality_loop.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * Update relays/finality-relay/src/finality_loop.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * docs * moved doc * typo * Update relays/finality-relay/src/finality_loop_tests.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * Update relays/finality-relay/src/finality_loop_tests.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * header_and_finality_proof_by_number -> header_and_finality_proof * VecDeque isn't required (because of make_contiguous) * fixed wrong expect * Update relays/finality-relay/src/finality_loop.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * Update relays/substrate/src/rialto_headers_to_millau.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * Update relays/substrate/src/rialto_headers_to_millau.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * RialtoSyncHeader * Update relays/finality-relay/src/finality_loop.rs Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Update relays/finality-relay/src/finality_loop.rs Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * removed wrong comment * Update relays/finality-relay/src/finality_loop.rs Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * fix used runtime methods names * fix for new jsonrpsee * fix comment * initialize finality verifier pallet * fmt Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com>
51 lines
2.0 KiB
TOML
51 lines
2.0 KiB
TOML
[package]
|
|
name = "substrate-relay"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
async-std = "1.9.0"
|
|
async-trait = "0.1.42"
|
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
|
futures = "0.3.12"
|
|
hex = "0.4"
|
|
log = "0.4.14"
|
|
num-traits = "0.2"
|
|
paste = "1.0"
|
|
structopt = "0.3"
|
|
|
|
# Bridge dependencies
|
|
|
|
bp-header-chain = { path = "../../primitives/header-chain" }
|
|
bp-kusama = { path = "../../primitives/kusama" }
|
|
bp-message-lane = { path = "../../primitives/message-lane" }
|
|
bp-millau = { path = "../../primitives/millau" }
|
|
bp-polkadot = { path = "../../primitives/polkadot" }
|
|
bp-runtime = { path = "../../primitives/runtime" }
|
|
bp-rialto = { path = "../../primitives/rialto" }
|
|
bridge-runtime-common = { path = "../../bin/runtime-common" }
|
|
finality-relay = { path = "../finality-relay" }
|
|
headers-relay = { path = "../headers-relay" }
|
|
messages-relay = { path = "../messages-relay" }
|
|
millau-runtime = { path = "../../bin/millau/runtime" }
|
|
pallet-bridge-call-dispatch = { path = "../../modules/call-dispatch" }
|
|
pallet-finality-verifier = { path = "../../modules/finality-verifier" }
|
|
pallet-message-lane = { path = "../../modules/message-lane" }
|
|
relay-kusama-client = { path = "../kusama-client" }
|
|
relay-millau-client = { path = "../millau-client" }
|
|
relay-polkadot-client = { path = "../polkadot-client" }
|
|
relay-rialto-client = { path = "../rialto-client" }
|
|
relay-substrate-client = { path = "../substrate-client" }
|
|
relay-utils = { path = "../utils" }
|
|
rialto-runtime = { path = "../../bin/rialto/runtime" }
|
|
|
|
# Substrate Dependencies
|
|
|
|
frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" }
|
|
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate.git", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" }
|
|
sp-trie = { git = "https://github.com/paritytech/substrate.git", branch = "master" }
|