mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 22:11:02 +00:00
f4bb17cc86
Rococo<>Wococo bridge is replaced by Rococo<Westend bridge, so this PR removes unneeded code. - [x] update bridges subtree after https://github.com/paritytech/parity-bridges-common/pull/2692 --------- Co-authored-by: command-bot <> Co-authored-by: Svyatoslav Nikolsky <svyatonik@gmail.com>
97 lines
4.8 KiB
TOML
97 lines
4.8 KiB
TOML
[package]
|
|
name = "bridge-hub-test-utils"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
description = "Utils for BridgeHub testing"
|
|
license = "Apache-2.0"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "max-encoded-len"] }
|
|
log = { version = "0.4.20", default-features = false }
|
|
|
|
# Substrate
|
|
frame-benchmarking = { path = "../../../../../substrate/frame/benchmarking", default-features = false, optional = true }
|
|
frame-executive = { path = "../../../../../substrate/frame/executive", default-features = false}
|
|
frame-support = { path = "../../../../../substrate/frame/support", default-features = false}
|
|
frame-system = { path = "../../../../../substrate/frame/system", default-features = false}
|
|
sp-core = { path = "../../../../../substrate/primitives/core", default-features = false}
|
|
sp-io = { path = "../../../../../substrate/primitives/io", default-features = false}
|
|
sp-keyring = { path = "../../../../../substrate/primitives/keyring" }
|
|
sp-runtime = { path = "../../../../../substrate/primitives/runtime", default-features = false}
|
|
sp-tracing = { path = "../../../../../substrate/primitives/tracing" }
|
|
pallet-balances = { path = "../../../../../substrate/frame/balances", default-features = false}
|
|
pallet-utility = { path = "../../../../../substrate/frame/utility", default-features = false}
|
|
pallet-session = { path = "../../../../../substrate/frame/session", default-features = false}
|
|
|
|
# Cumulus
|
|
asset-test-utils = { path = "../../assets/test-utils" }
|
|
cumulus-pallet-parachain-system = { path = "../../../../pallets/parachain-system", default-features = false, features = ["parameterized-consensus-hook",] }
|
|
cumulus-pallet-xcmp-queue = { path = "../../../../pallets/xcmp-queue", default-features = false }
|
|
pallet-collator-selection = { path = "../../../../pallets/collator-selection", default-features = false }
|
|
parachain-info = { package = "staging-parachain-info", path = "../../../pallets/parachain-info", default-features = false }
|
|
parachains-common = { path = "../../../common", default-features = false }
|
|
parachains-runtimes-test-utils = { path = "../../test-utils", default-features = false }
|
|
|
|
# Polkadot
|
|
pallet-xcm = { path = "../../../../../polkadot/xcm/pallet-xcm", default-features = false}
|
|
pallet-xcm-benchmarks = { path = "../../../../../polkadot/xcm/pallet-xcm-benchmarks", default-features = false, optional = true }
|
|
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false}
|
|
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
|
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
|
|
|
# Bridges
|
|
bp-header-chain = { path = "../../../../../bridges/primitives/header-chain", default-features = false }
|
|
bp-messages = { path = "../../../../../bridges/primitives/messages", default-features = false }
|
|
bp-parachains = { path = "../../../../../bridges/primitives/parachains", default-features = false }
|
|
bp-polkadot-core = { path = "../../../../../bridges/primitives/polkadot-core", default-features = false }
|
|
bp-relayers = { path = "../../../../../bridges/primitives/relayers", default-features = false }
|
|
bp-runtime = { path = "../../../../../bridges/primitives/runtime", default-features = false }
|
|
bp-test-utils = { path = "../../../../../bridges/primitives/test-utils", default-features = false }
|
|
pallet-bridge-grandpa = { path = "../../../../../bridges/modules/grandpa", default-features = false }
|
|
pallet-bridge-parachains = { path = "../../../../../bridges/modules/parachains", default-features = false }
|
|
pallet-bridge-messages = { path = "../../../../../bridges/modules/messages", default-features = false }
|
|
pallet-bridge-relayers = { path = "../../../../../bridges/modules/relayers", default-features = false }
|
|
bridge-runtime-common = { path = "../../../../../bridges/bin/runtime-common", default-features = false }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"asset-test-utils/std",
|
|
"bp-header-chain/std",
|
|
"bp-messages/std",
|
|
"bp-parachains/std",
|
|
"bp-polkadot-core/std",
|
|
"bp-relayers/std",
|
|
"bp-runtime/std",
|
|
"bp-test-utils/std",
|
|
"bridge-runtime-common/std",
|
|
"codec/std",
|
|
"cumulus-pallet-parachain-system/std",
|
|
"cumulus-pallet-xcmp-queue/std",
|
|
"frame-benchmarking/std",
|
|
"frame-executive/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"log/std",
|
|
"pallet-balances/std",
|
|
"pallet-bridge-grandpa/std",
|
|
"pallet-bridge-messages/std",
|
|
"pallet-bridge-parachains/std",
|
|
"pallet-bridge-relayers/std",
|
|
"pallet-collator-selection/std",
|
|
"pallet-session/std",
|
|
"pallet-utility/std",
|
|
"pallet-xcm-benchmarks?/std",
|
|
"pallet-xcm/std",
|
|
"parachain-info/std",
|
|
"parachains-common/std",
|
|
"parachains-runtimes-test-utils/std",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"xcm-builder/std",
|
|
"xcm-executor/std",
|
|
"xcm/std",
|
|
]
|