mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-01 04:17:57 +00:00
76a84c6366
Bumps [strum](https://github.com/Peternator7/strum) from 0.21.0 to 0.24.1. - [Release notes](https://github.com/Peternator7/strum/releases) - [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md) - [Commits](https://github.com/Peternator7/strum/commits) --- updated-dependencies: - dependency-name: strum dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
70 lines
2.9 KiB
TOML
70 lines
2.9 KiB
TOML
[package]
|
|
name = "substrate-relay"
|
|
version = "1.0.1"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
async-std = "1.9.0"
|
|
async-trait = "0.1"
|
|
codec = { package = "parity-scale-codec", version = "3.1.5" }
|
|
futures = "0.3.12"
|
|
hex = "0.4"
|
|
log = "0.4.17"
|
|
num-format = "0.4"
|
|
num-traits = "0.2"
|
|
rbtag = "0.3"
|
|
structopt = "0.3"
|
|
signal-hook = "0.3.14"
|
|
signal-hook-async-std = "0.2.2"
|
|
strum = { version = "0.24.1", features = ["derive"] }
|
|
|
|
# Bridge dependencies
|
|
bp-header-chain = { path = "../../primitives/header-chain" }
|
|
bp-messages = { path = "../../primitives/messages" }
|
|
bp-parachains = { path = "../../primitives/parachains" }
|
|
bp-millau = { path = "../../primitives/chain-millau" }
|
|
bp-polkadot-core = { path = "../../primitives/polkadot-core" }
|
|
bp-rialto = { path = "../../primitives/chain-rialto" }
|
|
bp-rialto-parachain = { path = "../../primitives/chain-rialto-parachain" }
|
|
bp-runtime = { path = "../../primitives/runtime" }
|
|
bridge-runtime-common = { path = "../../bin/runtime-common" }
|
|
millau-runtime = { path = "../../bin/millau/runtime" }
|
|
pallet-bridge-parachains = { path = "../../modules/parachains" }
|
|
parachains-relay = { path = "../parachains" }
|
|
relay-millau-client = { path = "../client-millau" }
|
|
relay-rialto-client = { path = "../client-rialto" }
|
|
relay-rialto-parachain-client = { path = "../client-rialto-parachain" }
|
|
relay-bridge-hub-rococo-client = { path = "../client-bridge-hub-rococo" }
|
|
relay-bridge-hub-wococo-client = { path = "../client-bridge-hub-wococo" }
|
|
relay-rococo-client = { path = "../client-rococo" }
|
|
relay-substrate-client = { path = "../client-substrate" }
|
|
relay-utils = { path = "../utils" }
|
|
relay-westend-client = { path = "../client-westend" }
|
|
relay-wococo-client = { path = "../client-wococo" }
|
|
rialto-runtime = { path = "../../bin/rialto/runtime" }
|
|
substrate-relay-helper = { path = "../lib-substrate-relay" }
|
|
|
|
# Substrate Dependencies
|
|
|
|
frame-support = { 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" }
|
|
|
|
# Polkadot Dependencies
|
|
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
xcm = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false }
|
|
|
|
|
|
[dev-dependencies]
|
|
bp-test-utils = { path = "../../primitives/test-utils" }
|
|
hex-literal = "0.3"
|
|
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
tempfile = "3.2"
|
|
finality-grandpa = { version = "0.16.0" }
|