[package] name = "pallet-bridge-parachains" version = "0.18.0" description = "Module that allows bridged relay chains to exchange information on their parachains' heads." 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-parachains.workspace = true bp-polkadot-core.workspace = true bp-runtime.workspace = true pallet-bridge-grandpa.workspace = true frame-benchmarking = { optional = true, workspace = true } frame-support.workspace = true frame-system.workspace = true sp-runtime.workspace = true sp-std.workspace = true [dev-dependencies] bp-header-chain = { default-features = true, path = "../../primitives/header-chain" } bp-test-utils = { default-features = true, path = "../../primitives/test-utils" } sp-core = { default-features = true, path = "../../../substrate/primitives/core" } sp-io = { default-features = true, path = "../../../substrate/primitives/io" } [features] default = ["std"] std = [ "bp-header-chain/std", "bp-parachains/std", "bp-polkadot-core/std", "bp-runtime/std", "codec/std", "frame-benchmarking/std", "frame-support/std", "frame-system/std", "log/std", "pallet-bridge-grandpa/std", "scale-info/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", "sp-runtime/runtime-benchmarks", ] try-runtime = [ "frame-support/try-runtime", "frame-system/try-runtime", "pallet-bridge-grandpa/try-runtime", "sp-runtime/try-runtime", ]