mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 07:31:02 +00:00
6420f8c4e2
Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.78 to 0.1.79. - [Release notes](https://github.com/dtolnay/async-trait/releases) - [Commits](https://github.com/dtolnay/async-trait/compare/0.1.78...0.1.79) --- updated-dependencies: - dependency-name: async-trait dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
64 lines
2.5 KiB
TOML
64 lines
2.5 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"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
async-std = "1.9.0"
|
|
async-trait = "0.1.79"
|
|
codec = { package = "parity-scale-codec", version = "3.1.5" }
|
|
futures = "0.3.30"
|
|
hex = "0.4"
|
|
log = { workspace = true }
|
|
num-traits = "0.2"
|
|
rbtag = "0.3"
|
|
structopt = "0.3"
|
|
strum = { version = "0.26.2", features = ["derive"] }
|
|
thiserror = { workspace = true }
|
|
|
|
# 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" }
|
|
|
|
equivocation-detector = { path = "../equivocation" }
|
|
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/polkadot-sdk", branch = "master" }
|
|
frame-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
pallet-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
|
|
[dev-dependencies]
|
|
bp-rococo = { path = "../../primitives/chain-rococo" }
|
|
pallet-transaction-payment = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
relay-bridge-hub-rococo-client = { path = "../client-bridge-hub-rococo" }
|
|
relay-bridge-hub-westend-client = { path = "../client-bridge-hub-westend" }
|
|
relay-rococo-client = { path = "../client-rococo" }
|