[package] name = "pallet-bridge-relayers" description = "Module used to store relayer rewards and coordinate relayers set." version = "0.18.0" authors.workspace = true edition.workspace = true license = "GPL-3.0-or-later WITH Classpath-exception-2.0" repository.workspace = true [lints] workspace = true [dependencies] codec = { workspace = true } log = { workspace = true } scale-info = { features = ["derive"], workspace = true } bp-header-chain.workspace = true bp-messages.workspace = true bp-relayers.workspace = true bp-runtime.workspace = true pallet-bridge-grandpa.workspace = true pallet-bridge-messages.workspace = true pallet-bridge-parachains.workspace = true frame-benchmarking = { optional = true, workspace = true } frame-support.workspace = true frame-system.workspace = true pallet-transaction-payment.workspace = true sp-arithmetic.workspace = true sp-runtime.workspace = true sp-std.workspace = true [dev-dependencies] bp-runtime = { path = "../../primitives/runtime", default-features = false } pallet-balances = { default-features = true, path = "../../../substrate/frame/balances" } sp-io = { path = "../../../substrate/primitives/io", default-features = false } sp-runtime = { path = "../../../substrate/primitives/runtime", default-features = false } bp-parachains = { path = "../../primitives/parachains", default-features = false } bp-polkadot-core = { path = "../../primitives/polkadot-core", default-features = false } bp-test-utils = { path = "../../primitives/test-utils", default-features = false } pallet-utility = { path = "../../../substrate/frame/utility", default-features = false } sp-core = { path = "../../../substrate/primitives/core", default-features = false } [features] default = ["std"] std = [ "bp-header-chain/std", "bp-messages/std", "bp-relayers/std", "bp-runtime/std", "codec/std", "frame-benchmarking/std", "frame-support/std", "frame-system/std", "log/std", "pallet-bridge-grandpa/std", "pallet-bridge-messages/std", "pallet-bridge-parachains/std", "pallet-transaction-payment/std", "scale-info/std", "sp-arithmetic/std", "sp-runtime/std", "sp-std/std", ] runtime-benchmarks = [ "frame-benchmarking/runtime-benchmarks", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks", "pallet-bridge-grandpa/runtime-benchmarks", "pallet-bridge-messages/runtime-benchmarks", "pallet-bridge-parachains/runtime-benchmarks", "sp-runtime/runtime-benchmarks", ] try-runtime = [ "frame-support/try-runtime", "frame-system/try-runtime", "pallet-bridge-grandpa/try-runtime", "pallet-bridge-messages/try-runtime", "pallet-bridge-parachains/try-runtime", "pallet-transaction-payment/try-runtime", "sp-runtime/try-runtime", ] integrity-test = []