mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 23:21:02 +00:00
23f5f3cdd6
* limit messages in the batch by weight/count * fixed components compilation * reverted obsolete parts of #469 * implement generated_messages_weights * actually use computed weight in message proof * fmt and clippy * fixed TODO * clippy * Update relays/messages-relay/src/message_race_loop.rs Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> * add issue reference * add assert message * grumbles * fmt * reexport weight from bp-message-lane Co-authored-by: Hernando Castano <HCastano@users.noreply.github.com> Co-authored-by: Hernando Castano <castano.ha@gmail.com>
29 lines
734 B
TOML
29 lines
734 B
TOML
[package]
|
|
name = "pallet-message-lane-rpc"
|
|
description = "Module that provides RPC methods specific to message-lane pallet."
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
derive_more = "0.99.2"
|
|
futures = { version = "0.3.5", features = ["compat"] }
|
|
jsonrpc-core = "15.0.0"
|
|
jsonrpc-core-client = "15.0.0"
|
|
jsonrpc-derive = "15.0.0"
|
|
|
|
# Bridge dependencies
|
|
|
|
bp-runtime = { path = "../../../primitives/runtime" }
|
|
bp-message-lane = { path = "../../../primitives/message-lane" }
|
|
|
|
# Substrate Dependencies
|
|
|
|
sc-client-api = "2.0"
|
|
sp-blockchain = "2.0"
|
|
sp-core = "2.0"
|
|
sp-runtime = "2.0"
|
|
sp-state-machine = "0.8"
|
|
sp-trie = "2.0"
|