mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 08:41:02 +00:00
84cd93f936
* Move chain primitives to a sub-folder. * Update workspace members. * Extract core parts of polkadot. * cargo fmt --all * Remove TODO. * cargo fmt --all * Fix crate names. * Add to the latest API. * cargo fmt --all * Add nested lock files to ignore (generated during cargo fmt) * Fix compilation. * cargo fmt --all * Fix ignore pattern. * Address review comments.
54 lines
2.2 KiB
TOML
54 lines
2.2 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 = "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/chains/kusama" }
|
|
bp-message-lane = { path = "../../primitives/message-lane" }
|
|
bp-millau = { path = "../../primitives/chains/millau" }
|
|
bp-polkadot = { path = "../../primitives/chains/polkadot" }
|
|
bp-runtime = { path = "../../primitives/runtime" }
|
|
bp-rialto = { path = "../../primitives/chains/rialto" }
|
|
bridge-runtime-common = { path = "../../bin/runtime-common" }
|
|
finality-relay = { path = "../finality-relay" }
|
|
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-finality-verifier = { path = "../../modules/finality-verifier" }
|
|
pallet-message-lane = { path = "../../modules/message-lane" }
|
|
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", 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" }
|