mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 21:01:02 +00:00
e89d0fca35
Lifting some more dependencies to the workspace. Just using the most-often updated ones for now. It can be reproduced locally. ```sh # First you can check if there would be semver incompatible bumps (looks good in this case): $ zepter transpose dependency lift-to-workspace --ignore-errors syn quote thiserror "regex:^serde.*" # Then apply the changes: $ zepter transpose dependency lift-to-workspace --version-resolver=highest syn quote thiserror "regex:^serde.*" --fix # And format the changes: $ taplo format --config .config/taplo.toml ``` --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
306 lines
15 KiB
TOML
306 lines
15 KiB
TOML
[package]
|
|
name = "bridge-hub-rococo-runtime"
|
|
version = "0.5.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
description = "Rococo's BridgeHub parachain runtime"
|
|
license = "Apache-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[build-dependencies]
|
|
substrate-wasm-builder = { path = "../../../../../substrate/utils/wasm-builder", optional = true }
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [
|
|
"derive",
|
|
] }
|
|
hex-literal = { version = "0.4.1" }
|
|
log = { workspace = true }
|
|
scale-info = { version = "2.10.0", default-features = false, features = [
|
|
"derive",
|
|
] }
|
|
serde = { optional = true, features = ["derive"], workspace = true, default-features = true }
|
|
|
|
# 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 }
|
|
frame-system-benchmarking = { path = "../../../../../substrate/frame/system/benchmarking", default-features = false, optional = true }
|
|
frame-system-rpc-runtime-api = { path = "../../../../../substrate/frame/system/rpc/runtime-api", default-features = false }
|
|
frame-try-runtime = { path = "../../../../../substrate/frame/try-runtime", default-features = false, optional = true }
|
|
pallet-aura = { path = "../../../../../substrate/frame/aura", default-features = false }
|
|
pallet-authorship = { path = "../../../../../substrate/frame/authorship", default-features = false }
|
|
pallet-balances = { path = "../../../../../substrate/frame/balances", default-features = false }
|
|
pallet-session = { path = "../../../../../substrate/frame/session", default-features = false }
|
|
pallet-message-queue = { path = "../../../../../substrate/frame/message-queue", default-features = false }
|
|
pallet-multisig = { path = "../../../../../substrate/frame/multisig", default-features = false }
|
|
pallet-timestamp = { path = "../../../../../substrate/frame/timestamp", default-features = false }
|
|
pallet-transaction-payment = { path = "../../../../../substrate/frame/transaction-payment", default-features = false }
|
|
pallet-transaction-payment-rpc-runtime-api = { path = "../../../../../substrate/frame/transaction-payment/rpc/runtime-api", default-features = false }
|
|
pallet-utility = { path = "../../../../../substrate/frame/utility", default-features = false }
|
|
sp-api = { path = "../../../../../substrate/primitives/api", default-features = false }
|
|
sp-block-builder = { path = "../../../../../substrate/primitives/block-builder", default-features = false }
|
|
sp-consensus-aura = { path = "../../../../../substrate/primitives/consensus/aura", default-features = false }
|
|
sp-core = { path = "../../../../../substrate/primitives/core", default-features = false }
|
|
sp-genesis-builder = { path = "../../../../../substrate/primitives/genesis-builder", default-features = false }
|
|
sp-inherents = { path = "../../../../../substrate/primitives/inherents", default-features = false }
|
|
sp-io = { path = "../../../../../substrate/primitives/io", default-features = false }
|
|
sp-offchain = { path = "../../../../../substrate/primitives/offchain", default-features = false }
|
|
sp-runtime = { path = "../../../../../substrate/primitives/runtime", default-features = false }
|
|
sp-session = { path = "../../../../../substrate/primitives/session", default-features = false }
|
|
sp-std = { path = "../../../../../substrate/primitives/std", default-features = false }
|
|
sp-storage = { path = "../../../../../substrate/primitives/storage", default-features = false }
|
|
sp-transaction-pool = { path = "../../../../../substrate/primitives/transaction-pool", default-features = false }
|
|
sp-version = { path = "../../../../../substrate/primitives/version", default-features = false }
|
|
|
|
# Polkadot
|
|
rococo-runtime-constants = { path = "../../../../../polkadot/runtime/rococo/constants", default-features = false }
|
|
pallet-xcm = { path = "../../../../../polkadot/xcm/pallet-xcm", default-features = false }
|
|
pallet-xcm-benchmarks = { path = "../../../../../polkadot/xcm/pallet-xcm-benchmarks", default-features = false, optional = true }
|
|
polkadot-parachain-primitives = { path = "../../../../../polkadot/parachain", default-features = false }
|
|
polkadot-runtime-common = { path = "../../../../../polkadot/runtime/common", default-features = false }
|
|
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 }
|
|
|
|
# Cumulus
|
|
cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false }
|
|
cumulus-pallet-parachain-system = { path = "../../../../pallets/parachain-system", default-features = false, features = [
|
|
"parameterized-consensus-hook",
|
|
] }
|
|
cumulus-pallet-session-benchmarking = { path = "../../../../pallets/session-benchmarking", default-features = false }
|
|
cumulus-pallet-xcm = { path = "../../../../pallets/xcm", default-features = false }
|
|
cumulus-pallet-xcmp-queue = { path = "../../../../pallets/xcmp-queue", default-features = false, features = [
|
|
"bridging",
|
|
] }
|
|
cumulus-primitives-aura = { path = "../../../../primitives/aura", default-features = false }
|
|
cumulus-primitives-core = { path = "../../../../primitives/core", default-features = false }
|
|
cumulus-primitives-utility = { path = "../../../../primitives/utility", 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 }
|
|
testnet-parachains-constants = { path = "../../constants", default-features = false, features = ["rococo"] }
|
|
|
|
# Bridges
|
|
bp-asset-hub-rococo = { path = "../../../../../bridges/primitives/chain-asset-hub-rococo", default-features = false }
|
|
bp-asset-hub-westend = { path = "../../../../../bridges/primitives/chain-asset-hub-westend", default-features = false }
|
|
bp-bridge-hub-polkadot = { path = "../../../../../bridges/primitives/chain-bridge-hub-polkadot", default-features = false }
|
|
bp-bridge-hub-rococo = { path = "../../../../../bridges/primitives/chain-bridge-hub-rococo", default-features = false }
|
|
bp-bridge-hub-westend = { path = "../../../../../bridges/primitives/chain-bridge-hub-westend", 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-bulletin = { path = "../../../../../bridges/primitives/chain-polkadot-bulletin", 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-rococo = { path = "../../../../../bridges/primitives/chain-rococo", default-features = false }
|
|
bp-westend = { path = "../../../../../bridges/primitives/chain-westend", default-features = false }
|
|
pallet-bridge-grandpa = { path = "../../../../../bridges/modules/grandpa", default-features = false }
|
|
pallet-bridge-messages = { path = "../../../../../bridges/modules/messages", default-features = false }
|
|
pallet-bridge-parachains = { path = "../../../../../bridges/modules/parachains", default-features = false }
|
|
pallet-bridge-relayers = { path = "../../../../../bridges/modules/relayers", default-features = false }
|
|
pallet-xcm-bridge-hub = { path = "../../../../../bridges/modules/xcm-bridge-hub", default-features = false }
|
|
bridge-runtime-common = { path = "../../../../../bridges/bin/runtime-common", default-features = false }
|
|
|
|
# Ethereum Bridge (Snowbridge)
|
|
snowbridge-beacon-primitives = { path = "../../../../../bridges/snowbridge/primitives/beacon", default-features = false }
|
|
snowbridge-pallet-system = { path = "../../../../../bridges/snowbridge/pallets/system", default-features = false }
|
|
snowbridge-system-runtime-api = { path = "../../../../../bridges/snowbridge/pallets/system/runtime-api", default-features = false }
|
|
snowbridge-core = { path = "../../../../../bridges/snowbridge/primitives/core", default-features = false }
|
|
snowbridge-pallet-ethereum-client = { path = "../../../../../bridges/snowbridge/pallets/ethereum-client", default-features = false }
|
|
snowbridge-pallet-inbound-queue = { path = "../../../../../bridges/snowbridge/pallets/inbound-queue", default-features = false }
|
|
snowbridge-pallet-outbound-queue = { path = "../../../../../bridges/snowbridge/pallets/outbound-queue", default-features = false }
|
|
snowbridge-outbound-queue-runtime-api = { path = "../../../../../bridges/snowbridge/pallets/outbound-queue/runtime-api", default-features = false }
|
|
snowbridge-router-primitives = { path = "../../../../../bridges/snowbridge/primitives/router", default-features = false }
|
|
snowbridge-runtime-common = { path = "../../../../../bridges/snowbridge/runtime/runtime-common", default-features = false }
|
|
|
|
bridge-hub-common = { path = "../common", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
static_assertions = "1.1"
|
|
bridge-hub-test-utils = { path = "../test-utils" }
|
|
bridge-runtime-common = { path = "../../../../../bridges/bin/runtime-common", features = [
|
|
"integrity-test",
|
|
] }
|
|
sp-keyring = { path = "../../../../../substrate/primitives/keyring" }
|
|
snowbridge-runtime-test-common = { path = "../../../../../bridges/snowbridge/runtime/test-common" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"bp-asset-hub-rococo/std",
|
|
"bp-asset-hub-westend/std",
|
|
"bp-bridge-hub-polkadot/std",
|
|
"bp-bridge-hub-rococo/std",
|
|
"bp-bridge-hub-westend/std",
|
|
"bp-header-chain/std",
|
|
"bp-messages/std",
|
|
"bp-parachains/std",
|
|
"bp-polkadot-bulletin/std",
|
|
"bp-polkadot-core/std",
|
|
"bp-relayers/std",
|
|
"bp-rococo/std",
|
|
"bp-runtime/std",
|
|
"bp-westend/std",
|
|
"bridge-hub-common/std",
|
|
"bridge-runtime-common/std",
|
|
"codec/std",
|
|
"cumulus-pallet-aura-ext/std",
|
|
"cumulus-pallet-parachain-system/std",
|
|
"cumulus-pallet-session-benchmarking/std",
|
|
"cumulus-pallet-xcm/std",
|
|
"cumulus-pallet-xcmp-queue/std",
|
|
"cumulus-primitives-aura/std",
|
|
"cumulus-primitives-core/std",
|
|
"cumulus-primitives-utility/std",
|
|
"frame-benchmarking/std",
|
|
"frame-executive/std",
|
|
"frame-support/std",
|
|
"frame-system-benchmarking?/std",
|
|
"frame-system-rpc-runtime-api/std",
|
|
"frame-system/std",
|
|
"frame-try-runtime?/std",
|
|
"log/std",
|
|
"pallet-aura/std",
|
|
"pallet-authorship/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-message-queue/std",
|
|
"pallet-multisig/std",
|
|
"pallet-session/std",
|
|
"pallet-timestamp/std",
|
|
"pallet-transaction-payment-rpc-runtime-api/std",
|
|
"pallet-transaction-payment/std",
|
|
"pallet-utility/std",
|
|
"pallet-xcm-benchmarks?/std",
|
|
"pallet-xcm-bridge-hub/std",
|
|
"pallet-xcm/std",
|
|
"parachain-info/std",
|
|
"parachains-common/std",
|
|
"polkadot-parachain-primitives/std",
|
|
"polkadot-runtime-common/std",
|
|
"rococo-runtime-constants/std",
|
|
"scale-info/std",
|
|
"serde",
|
|
"snowbridge-beacon-primitives/std",
|
|
"snowbridge-core/std",
|
|
"snowbridge-outbound-queue-runtime-api/std",
|
|
"snowbridge-pallet-ethereum-client/std",
|
|
"snowbridge-pallet-inbound-queue/std",
|
|
"snowbridge-pallet-outbound-queue/std",
|
|
"snowbridge-pallet-system/std",
|
|
"snowbridge-router-primitives/std",
|
|
"snowbridge-runtime-common/std",
|
|
"snowbridge-system-runtime-api/std",
|
|
"sp-api/std",
|
|
"sp-block-builder/std",
|
|
"sp-consensus-aura/std",
|
|
"sp-core/std",
|
|
"sp-genesis-builder/std",
|
|
"sp-inherents/std",
|
|
"sp-io/std",
|
|
"sp-offchain/std",
|
|
"sp-runtime/std",
|
|
"sp-session/std",
|
|
"sp-std/std",
|
|
"sp-storage/std",
|
|
"sp-transaction-pool/std",
|
|
"sp-version/std",
|
|
"substrate-wasm-builder",
|
|
"testnet-parachains-constants/std",
|
|
"xcm-builder/std",
|
|
"xcm-executor/std",
|
|
"xcm/std",
|
|
]
|
|
|
|
runtime-benchmarks = [
|
|
"bridge-hub-common/runtime-benchmarks",
|
|
"bridge-runtime-common/runtime-benchmarks",
|
|
"cumulus-pallet-parachain-system/runtime-benchmarks",
|
|
"cumulus-pallet-session-benchmarking/runtime-benchmarks",
|
|
"cumulus-pallet-xcmp-queue/runtime-benchmarks",
|
|
"cumulus-primitives-core/runtime-benchmarks",
|
|
"cumulus-primitives-utility/runtime-benchmarks",
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system-benchmarking/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"pallet-balances/runtime-benchmarks",
|
|
"pallet-bridge-grandpa/runtime-benchmarks",
|
|
"pallet-bridge-messages/runtime-benchmarks",
|
|
"pallet-bridge-parachains/runtime-benchmarks",
|
|
"pallet-bridge-relayers/runtime-benchmarks",
|
|
"pallet-collator-selection/runtime-benchmarks",
|
|
"pallet-message-queue/runtime-benchmarks",
|
|
"pallet-multisig/runtime-benchmarks",
|
|
"pallet-timestamp/runtime-benchmarks",
|
|
"pallet-utility/runtime-benchmarks",
|
|
"pallet-xcm-benchmarks/runtime-benchmarks",
|
|
"pallet-xcm-bridge-hub/runtime-benchmarks",
|
|
"pallet-xcm/runtime-benchmarks",
|
|
"parachains-common/runtime-benchmarks",
|
|
"polkadot-parachain-primitives/runtime-benchmarks",
|
|
"polkadot-runtime-common/runtime-benchmarks",
|
|
"snowbridge-core/runtime-benchmarks",
|
|
"snowbridge-pallet-ethereum-client/runtime-benchmarks",
|
|
"snowbridge-pallet-inbound-queue/runtime-benchmarks",
|
|
"snowbridge-pallet-outbound-queue/runtime-benchmarks",
|
|
"snowbridge-pallet-system/runtime-benchmarks",
|
|
"snowbridge-router-primitives/runtime-benchmarks",
|
|
"snowbridge-runtime-common/runtime-benchmarks",
|
|
"snowbridge-runtime-test-common/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
]
|
|
|
|
try-runtime = [
|
|
"cumulus-pallet-aura-ext/try-runtime",
|
|
"cumulus-pallet-parachain-system/try-runtime",
|
|
"cumulus-pallet-xcm/try-runtime",
|
|
"cumulus-pallet-xcmp-queue/try-runtime",
|
|
"frame-executive/try-runtime",
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"frame-try-runtime/try-runtime",
|
|
"pallet-aura/try-runtime",
|
|
"pallet-authorship/try-runtime",
|
|
"pallet-balances/try-runtime",
|
|
"pallet-bridge-grandpa/try-runtime",
|
|
"pallet-bridge-messages/try-runtime",
|
|
"pallet-bridge-parachains/try-runtime",
|
|
"pallet-bridge-relayers/try-runtime",
|
|
"pallet-collator-selection/try-runtime",
|
|
"pallet-message-queue/try-runtime",
|
|
"pallet-multisig/try-runtime",
|
|
"pallet-session/try-runtime",
|
|
"pallet-timestamp/try-runtime",
|
|
"pallet-transaction-payment/try-runtime",
|
|
"pallet-utility/try-runtime",
|
|
"pallet-xcm-bridge-hub/try-runtime",
|
|
"pallet-xcm/try-runtime",
|
|
"parachain-info/try-runtime",
|
|
"polkadot-runtime-common/try-runtime",
|
|
"snowbridge-pallet-ethereum-client/try-runtime",
|
|
"snowbridge-pallet-inbound-queue/try-runtime",
|
|
"snowbridge-pallet-outbound-queue/try-runtime",
|
|
"snowbridge-pallet-system/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|
|
|
|
experimental = ["pallet-aura/experimental"]
|
|
fast-runtime = []
|
|
|
|
# A feature that should be enabled when the runtime should be built for on-chain
|
|
# deployment. This will disable stuff that shouldn't be part of the on-chain wasm
|
|
# to make it smaller, like logging for example.
|
|
on-chain-release-build = ["sp-api/disable-logging"]
|