mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 11:01:01 +00:00
4004742e85
* introduce bp_messages::ChainWithMessages (#2171) * Move Chain::ID from relay-level Chain to primitives-level Chain (#2181) * move Chain::ID from relay-level Chain to primitives-level Chain * removed chain IDs from bp-runtime * add missing file header * Some code grooming (#2276) * some code grooming: enable warn(missing_docs) for all piblic crates + added missing documentation + removed obsolete clippy/deny workarounds * removed strange allow + added comment related to other allow * removed incorrect_clone_impl_on_copy_type which is unknown to CI clippy
37 lines
1.4 KiB
TOML
37 lines
1.4 KiB
TOML
[package]
|
|
name = "relay-bridge-hub-polkadot-client"
|
|
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]
|
|
codec = { package = "parity-scale-codec", version = "3.1.5", features = ["derive"] }
|
|
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
|
relay-substrate-client = { path = "../client-substrate" }
|
|
|
|
# Bridge dependencies
|
|
|
|
bp-bridge-hub-kusama = { path = "../../primitives/chain-bridge-hub-kusama" }
|
|
bp-bridge-hub-polkadot = { path = "../../primitives/chain-bridge-hub-polkadot" }
|
|
bp-header-chain = { path = "../../primitives/header-chain" }
|
|
bp-parachains = { path = "../../primitives/parachains" }
|
|
bp-polkadot-bulletin = { path = "../../primitives/chain-polkadot-bulletin" }
|
|
bp-polkadot-core = { path = "../../primitives/polkadot-core" }
|
|
bp-kusama = { path = "../../primitives/chain-kusama" }
|
|
bp-runtime = { path = "../../primitives/runtime" }
|
|
|
|
bridge-runtime-common = { path = "../../bin/runtime-common" }
|
|
|
|
# Substrate Dependencies
|
|
|
|
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
|
|
[dev-dependencies]
|
|
bp-polkadot-core = { path = "../../primitives/polkadot-core" }
|
|
sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|