[package] name = "pallet-bridge-messages" description = "Module that allows bridged chains to exchange messages using lane concept." version = "0.7.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 } scale-info = { features = ["derive"], workspace = true } tracing = { workspace = true } # Bridge dependencies bp-header-chain = { workspace = true } bp-messages = { workspace = true } bp-runtime = { workspace = true } # Substrate Dependencies frame-benchmarking = { optional = true, workspace = true } frame-support = { workspace = true } frame-system = { workspace = true } sp-runtime = { workspace = true } sp-std = { workspace = true } sp-trie = { optional = true, workspace = true } [dev-dependencies] bp-runtime = { features = ["test-helpers"], workspace = true } bp-test-utils = { workspace = true } pallet-balances = { workspace = true } pallet-bridge-grandpa = { workspace = true } sp-core = { workspace = true } sp-io = { workspace = true } [features] default = ["std"] std = [ "bp-header-chain/std", "bp-messages/std", "bp-runtime/std", "bp-test-utils/std", "codec/std", "frame-benchmarking/std", "frame-support/std", "frame-system/std", "pallet-balances/std", "pallet-bridge-grandpa/std", "scale-info/std", "sp-core/std", "sp-io/std", "sp-runtime/std", "sp-std/std", "sp-trie/std", "tracing/std", ] runtime-benchmarks = [ "bp-header-chain/runtime-benchmarks", "bp-messages/runtime-benchmarks", "bp-runtime/runtime-benchmarks", "bp-runtime/test-helpers", "bp-test-utils/runtime-benchmarks", "frame-benchmarking/runtime-benchmarks", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks", "pallet-balances/runtime-benchmarks", "pallet-bridge-grandpa/runtime-benchmarks", "sp-io/runtime-benchmarks", "sp-runtime/runtime-benchmarks", "sp-trie?/runtime-benchmarks", ] try-runtime = [ "frame-support/try-runtime", "frame-system/try-runtime", "pallet-balances/try-runtime", "pallet-bridge-grandpa/try-runtime", "sp-runtime/try-runtime", ] test-helpers = ["bp-runtime/test-helpers", "sp-trie"]