mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 16:27:58 +00:00
fe050f6f50
Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.39 to 1.0.40. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.39...1.0.40) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
60 lines
2.3 KiB
TOML
60 lines
2.3 KiB
TOML
[package]
|
|
name = "substrate-relay-helper"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
thiserror = "1.0.40"
|
|
async-std = "1.9.0"
|
|
async-trait = "0.1"
|
|
codec = { package = "parity-scale-codec", version = "3.1.5" }
|
|
futures = "0.3.27"
|
|
hex = "0.4"
|
|
num-traits = "0.2"
|
|
log = "0.4.17"
|
|
|
|
# Bridge dependencies
|
|
|
|
bp-header-chain = { path = "../../primitives/header-chain" }
|
|
bp-parachains = { path = "../../primitives/parachains" }
|
|
bp-polkadot-core = { path = "../../primitives/polkadot-core" }
|
|
bp-relayers = { path = "../../primitives/relayers" }
|
|
bridge-runtime-common = { path = "../../bin/runtime-common" }
|
|
|
|
finality-grandpa = { version = "0.16.2" }
|
|
finality-relay = { path = "../finality" }
|
|
parachains-relay = { path = "../parachains" }
|
|
relay-utils = { path = "../utils" }
|
|
messages-relay = { path = "../messages" }
|
|
relay-substrate-client = { path = "../client-substrate" }
|
|
|
|
pallet-bridge-grandpa = { path = "../../modules/grandpa" }
|
|
pallet-bridge-messages = { path = "../../modules/messages" }
|
|
pallet-bridge-parachains = { path = "../../modules/parachains" }
|
|
|
|
bp-runtime = { path = "../../primitives/runtime" }
|
|
bp-messages = { path = "../../primitives/messages" }
|
|
|
|
# Substrate Dependencies
|
|
|
|
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[dev-dependencies]
|
|
bp-rialto = { path = "../../primitives/chain-rialto" }
|
|
bp-rialto-parachain = { path = "../../primitives/chain-rialto-parachain" }
|
|
bp-rococo = { path = "../../primitives/chain-rococo" }
|
|
bp-wococo = { path = "../../primitives/chain-wococo" }
|
|
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
relay-rialto-client = { path = "../client-rialto" }
|
|
relay-rococo-client = { path = "../client-rococo" }
|
|
relay-wococo-client = { path = "../client-wococo" }
|
|
rialto-runtime = { path = "../../bin/rialto/runtime" }
|