mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 20:27:58 +00:00
8d122b03f1
* Rename `pallet-finality-verifier` to `pallet-bridge-grandpa` * Missed some CamelCase ones * Update logging target in GRANDPA pallet * Rename `pallet-bridge-call-dispatch` to `pallet-bridge-dispatch` * Rename the dispatch pallet folder * Update logging target in Dispatch pallet * Missed a couple * Format the repo * Stop listing individual pallets in Compose logs * Use correct pallet name in module doc comments * Add `pallet-bridge-dispatch` to README project layout * Sort crate names in TOML files * Rename `pallet-bridge-grandpa` runtime Call alias
58 lines
2.3 KiB
TOML
58 lines
2.3 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]
|
|
anyhow = "1.0"
|
|
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/chain-kusama" }
|
|
bp-messages = { path = "../../primitives/messages" }
|
|
bp-millau = { path = "../../primitives/chain-millau" }
|
|
bp-polkadot = { path = "../../primitives/chain-polkadot" }
|
|
bp-rialto = { path = "../../primitives/chain-rialto" }
|
|
bp-runtime = { path = "../../primitives/runtime" }
|
|
bp-westend = { path = "../../primitives/chain-westend" }
|
|
bridge-runtime-common = { path = "../../bin/runtime-common" }
|
|
finality-grandpa = { version = "0.14.0" }
|
|
finality-relay = { path = "../finality" }
|
|
headers-relay = { path = "../headers" }
|
|
messages-relay = { path = "../messages" }
|
|
millau-runtime = { path = "../../bin/millau/runtime" }
|
|
pallet-bridge-dispatch = { path = "../../modules/dispatch" }
|
|
pallet-bridge-grandpa = { path = "../../modules/grandpa" }
|
|
pallet-bridge-messages = { path = "../../modules/messages" }
|
|
relay-kusama-client = { path = "../client-kusama" }
|
|
relay-millau-client = { path = "../client-millau" }
|
|
relay-polkadot-client = { path = "../client-polkadot" }
|
|
relay-rialto-client = { path = "../client-rialto" }
|
|
relay-substrate-client = { path = "../client-substrate" }
|
|
relay-utils = { path = "../utils" }
|
|
relay-westend-client = { path = "../client-westend" }
|
|
rialto-runtime = { path = "../../bin/rialto/runtime" }
|
|
|
|
# Substrate Dependencies
|
|
|
|
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[dev-dependencies]
|
|
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|