mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57:58 +00:00
4105575794
* use runtime:: prefix for message-lane pallet traces * renamed message-lane (module and primitives) folder into messages * replace "message lane" with "messages" where appropriate
30 lines
1.1 KiB
TOML
30 lines
1.1 KiB
TOML
[package]
|
|
name = "pallet-bridge-messages-rpc"
|
|
description = "Module that provides RPC methods specific to pallet-bridge-messages 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.1.0"
|
|
jsonrpc-core-client = "15.1.0"
|
|
jsonrpc-derive = "15.1.0"
|
|
log = "0.4.11"
|
|
|
|
# Bridge dependencies
|
|
|
|
bp-runtime = { path = "../../../primitives/runtime" }
|
|
bp-messages = { path = "../../../primitives/messages" }
|
|
|
|
# Substrate Dependencies
|
|
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
|