[package] authors = ["Snowfork "] categories = ["cryptography::cryptocurrencies"] description = "Snowbridge Outbound Queue Pallet V2" edition.workspace = true license = "Apache-2.0" name = "snowbridge-pallet-outbound-queue-v2" repository.workspace = true version.workspace = true [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] [package.metadata.polkadot-sdk] exclude-from-umbrella = true [dependencies] alloy-core = { workspace = true, features = ["sol-types"] } codec = { features = ["derive"], workspace = true } ethabi = { workspace = true } hex-literal = { workspace = true, default-features = true } scale-info = { features = ["derive"], workspace = true } serde = { features = ["alloc", "derive"], workspace = true } frame-benchmarking = { optional = true, workspace = true } frame-support = { workspace = true } frame-system = { workspace = true } sp-arithmetic = { workspace = true } sp-core = { workspace = true } sp-io = { workspace = true } sp-runtime = { workspace = true } sp-std = { workspace = true } bp-relayers = { workspace = true } bridge-hub-common = { workspace = true } snowbridge-beacon-primitives = { workspace = true } snowbridge-core = { workspace = true } snowbridge-inbound-queue-primitives = { workspace = true } snowbridge-merkle-tree = { workspace = true } snowbridge-outbound-queue-primitives = { workspace = true } snowbridge-verification-primitives = { workspace = true } xcm = { workspace = true } xcm-builder = { workspace = true } xcm-executor = { workspace = true } [dev-dependencies] pallet-message-queue = { workspace = true } sp-keyring = { workspace = true, default-features = true } [features] default = ["std"] runtime-benchmarks = [ "bridge-hub-common/runtime-benchmarks", "frame-benchmarking", "frame-benchmarking/runtime-benchmarks", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks", "pallet-message-queue/runtime-benchmarks", "snowbridge-core/runtime-benchmarks", "sp-runtime/runtime-benchmarks", "xcm-builder/runtime-benchmarks", "xcm-executor/runtime-benchmarks", ] std = [ "alloy-core/std", "bp-relayers/std", "bridge-hub-common/std", "codec/std", "ethabi/std", "frame-benchmarking/std", "frame-support/std", "frame-system/std", "pallet-message-queue/std", "scale-info/std", "serde/std", "snowbridge-core/std", "snowbridge-merkle-tree/std", "snowbridge-outbound-queue-primitives/std", "sp-arithmetic/std", "sp-core/std", "sp-io/std", "sp-runtime/std", "sp-std/std", "xcm-builder/std", "xcm-executor/std", "xcm/std", ] try-runtime = [ "frame-support/try-runtime", "frame-system/try-runtime", "pallet-message-queue/try-runtime", "sp-runtime/try-runtime", ]