mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 21:01:02 +00:00
0711729d25
Related to https://github.com/paritytech/parity-bridges-common/issues/2538 This PR doesn't contain any functional changes. The PR moves specific bridged chain definitions from `bridges/primitives` to `bridges/chains` folder in order to facilitate the migration of the `parity-bridges-repo` into `polkadot-sdk` as discussed in https://hackmd.io/LprWjZ0bQXKpFeveYHIRXw?view Apart from this it also includes some cosmetic changes to some `Cargo.toml` files as a result of running `diener workspacify`.
25 lines
935 B
TOML
25 lines
935 B
TOML
[package]
|
|
name = "bridge-hub-rococo-emulated-chain"
|
|
version = "0.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
description = "Bridge Hub Rococo emulated chain"
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
|
|
# Substrate
|
|
sp-core = { path = "../../../../../../../../substrate/primitives/core", default-features = false }
|
|
frame-support = { path = "../../../../../../../../substrate/frame/support", default-features = false }
|
|
|
|
# Cumulus
|
|
parachains-common = { path = "../../../../../../common" }
|
|
emulated-integration-tests-common = { path = "../../../../common", default-features = false }
|
|
bridge-hub-rococo-runtime = { path = "../../../../../../runtimes/bridge-hubs/bridge-hub-rococo" }
|
|
bridge-hub-common = { path = "../../../../../../runtimes/bridge-hubs/common", default-features = false }
|
|
testnet-parachains-constants = { path = "../../../../../../runtimes/constants", features = ["rococo"] }
|