mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 05:51:02 +00:00
142a11ad95
* Move the bridges subtree under root * Squashed 'bridges/' changes from 277f0d5496..e50398d1c5 e50398d1c5 bridges subtree fixes (#2528) 99af07522d Markdown linter (#1309) (#2526) 733ff0fe7a `polkadot-staging` branch: Use polkadot-sdk dependencies (#2524) e8a59f141e Fix benchmark with new XCM::V3 `MAX_INSTRUCTIONS_TO_DECODE` (#2514) 62b185de15 Backport `polkadot-sdk` changes to `polkadot-staging` (#2518) d9658f4d5b Fix equivocation detection containers startup (#2516) (#2517) d65db28a8f Backport: building images from locally built binaries (#2513) 5fdbaf45f6 Start the equivocation detection loop from the complex relayer (#2507) (#2512) 7fbb67de46 Backport: Implement basic equivocations detection loop (#2375) cb7efe245c Manually update deps in polkadot staging (#2371) d17981fc33 #2351 to polkadot-staging (#2359) git-subtree-dir: bridges git-subtree-split: e50398d1c594e4e96df70b0bd376e565d17e8558 * Reapply diener workspacify * Fix Cargo.toml * Fix test * Adjustments
103 lines
5.1 KiB
TOML
103 lines
5.1 KiB
TOML
[package]
|
|
name = "bridge-hub-test-utils"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
description = "Utils for BridgeHub testing"
|
|
publish = false
|
|
|
|
[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 }
|
|
assert_matches = "1.4.0"
|
|
|
|
# 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}
|
|
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-dmp-queue = { path = "../../../../pallets/dmp-queue", default-features = false }
|
|
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 = { 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-bridge-hub-rococo = { path = "../../../../../bridges/primitives/chain-bridge-hub-rococo", default-features = false }
|
|
bp-bridge-hub-wococo = { path = "../../../../../bridges/primitives/chain-bridge-hub-wococo", default-features = false }
|
|
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-bridge-hub-rococo/std",
|
|
"bp-bridge-hub-wococo/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-dmp-queue/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",
|
|
]
|