mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 07:31:02 +00:00
d4fc7bebdc
* Millau messages -> Rialto relay * prepare for custom race strategy of delivery race * custom strategy for delivery race * update TODOs * add reference to issue 457 * impl reconnect * clippy * fix check in test * fmt * removed obsolete TODO * fixed another TODOs * fmt * use MAX_UNCONFIRMED_MESSAGES_AT_INBOUND_LANE const from primitives * Update relays/messages-relay/src/message_lane_loop.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * added SubstrateMessagesProof typedef * fix test * removed comment * additional_proof_required -> ProofParameters * typo * multiline literal * clippy * fix typo * and_then -> await * update_source_latest_confirmed_nonce * Update relays/messages-relay/src/message_race_delivery.rs Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com>
35 lines
886 B
TOML
35 lines
886 B
TOML
[package]
|
|
name = "bp-rialto"
|
|
description = "Primitives of Rialto runtime."
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
|
|
# Bridge Dependencies
|
|
|
|
bp-message-lane = { path = "../message-lane", default-features = false }
|
|
bp-runtime = { path = "../runtime", default-features = false }
|
|
|
|
# Substrate Based Dependencies
|
|
|
|
frame-support = { version = "2.0", default-features = false }
|
|
sp-api = { version = "2.0", default-features = false }
|
|
sp-core = { version = "2.0", default-features = false }
|
|
sp-runtime = { version = "2.0", default-features = false }
|
|
sp-std = { version = "2.0", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"bp-message-lane/std",
|
|
"bp-runtime/std",
|
|
"frame-support/std",
|
|
"sp-api/std",
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
]
|