mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 06:21:02 +00:00
e55d4dd6e0
* bump refs and fix build * more fixes * Fix rialto-parachain node * Update dependencies for tools/runtime-codegen * Regenerate rialto-parachain indirect runtime * Fix register_parachain * Fix clippy * Undo clippy allow --------- Co-authored-by: Serban Iorga <serban@parity.io>
31 lines
1.3 KiB
TOML
31 lines
1.3 KiB
TOML
[package]
|
|
name = "relay-rialto-parachain-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" }
|
|
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
|
|
subxt = { version = "0.27.1", default-features = false, features = [] }
|
|
|
|
# Bridge dependencies
|
|
|
|
bp-bridge-hub-cumulus = { path = "../../primitives/chain-bridge-hub-cumulus" }
|
|
bp-header-chain = { path = "../../primitives/header-chain" }
|
|
bp-messages = { path = "../../primitives/messages" }
|
|
bp-millau = { path = "../../primitives/chain-millau" }
|
|
bp-polkadot-core = { path = "../../primitives/polkadot-core" }
|
|
bp-rialto-parachain = { path = "../../primitives/chain-rialto-parachain" }
|
|
bp-runtime = { path = "../../primitives/runtime" }
|
|
|
|
bridge-runtime-common = { path = "../../bin/runtime-common" }
|
|
relay-substrate-client = { path = "../client-substrate" }
|
|
|
|
# Substrate Dependencies
|
|
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-weights = { git = "https://github.com/paritytech/substrate", branch = "master" }
|