mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 10:37:58 +00:00
f5fee288b9
* Add Chain::ID const * Relayers pallet: extend payment source id * Addressed code review comments * Fix benchmarks * Fix dashboards * Renamings * Fix compilation
29 lines
1.1 KiB
TOML
29 lines
1.1 KiB
TOML
[package]
|
|
name = "relay-bridge-hub-rococo-client"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.1.5", features = ["derive"] }
|
|
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
|
|
relay-substrate-client = { path = "../client-substrate" }
|
|
|
|
# Bridge dependencies
|
|
|
|
bp-bridge-hub-rococo = { path = "../../primitives/chain-bridge-hub-rococo" }
|
|
bp-bridge-hub-wococo = { path = "../../primitives/chain-bridge-hub-wococo" }
|
|
bp-header-chain = { path = "../../primitives/header-chain" }
|
|
bp-messages = { path = "../../primitives/messages" }
|
|
bp-parachains = { path = "../../primitives/parachains" }
|
|
bp-runtime = { path = "../../primitives/runtime" }
|
|
bp-wococo = { path = "../../primitives/chain-wococo" }
|
|
|
|
bridge-runtime-common = { path = "../../bin/runtime-common" }
|
|
|
|
# Substrate Dependencies
|
|
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|