mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-08 03:07:22 +00:00
2f457775bb
* fix broken message lane benchmarks * proof-size related benchmarks * impl Size for proof parameters * include proof weight into weight formula * left TODO * fixed proof size * WeightInfoExt::receive_messages_proof_weight * charge for extra message bytes delivery in send_message * removed default impl of WeightsInfoExt * moved weight formulas to WeightInfoExt * receive_messages_proof_outbound_lane_state_overhead is included twice in weight * typo * typo * fixed TODO * more asserts * started wotk on message-lane documentation * expected_extra_storage_proof_size() is actually expected in delivery confirmation tx * update README.md * ensure_able_to_receive_confirmation * test rialto message lane weights * removed TODO * removed unnecessary trait requirements * fixed arguments * fix compilation * decreased basic delivery tx weight * fmt * clippy * Update modules/message-lane/src/benchmarking.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * structs * Update primitives/millau/src/lib.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * removed readme.md * removed obsolete trait bounds * Revert "removed readme.md" This reverts commit 50b7376a41687a94c27bf77565434be153f87ca1. * Update bin/runtime-common/src/messages.rs Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Update bin/runtime-common/src/messages.rs Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Update bin/runtime-common/src/messages.rs Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Update bin/runtime-common/src/messages.rs Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Update bin/runtime-common/src/messages.rs Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Update bin/runtime-common/src/messages.rs Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Update bin/runtime-common/src/messages.rs Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * PreComputedSize Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com>
50 lines
2.0 KiB
TOML
50 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 = "1.3.4" }
|
|
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" }
|
|
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-message-lane = { path = "../../modules/message-lane" }
|
|
pallet-substrate-bridge = { path = "../../modules/substrate" }
|
|
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" }
|