[package] name = "snowbridge-pallet-outbound-queue" description = "Snowbridge Outbound Queue Pallet" version = "0.10.0" authors = ["Snowfork "] edition.workspace = true repository.workspace = true license = "Apache-2.0" categories = ["cryptography::cryptocurrencies"] [lints] workspace = true [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] [dependencies] serde = { features = ["alloc", "derive"], workspace = true } codec = { features = ["derive"], workspace = true } scale-info = { features = ["derive"], workspace = true } frame-benchmarking = { optional = true, workspace = true } frame-support.workspace = true frame-system.workspace = true sp-core.workspace = true sp-std.workspace = true sp-runtime.workspace = true sp-io.workspace = true sp-arithmetic.workspace = true bridge-hub-common.workspace = true snowbridge-core = { features = ["serde"], workspace = true } snowbridge-outbound-queue-merkle-tree.workspace = true ethabi = { workspace = true } [dev-dependencies] pallet-message-queue = { path = "../../../../substrate/frame/message-queue", default-features = false } sp-keyring = { default-features = true, path = "../../../../substrate/primitives/keyring" } [features] default = ["std"] std = [ "bridge-hub-common/std", "codec/std", "ethabi/std", "frame-benchmarking/std", "frame-support/std", "frame-system/std", "scale-info/std", "serde/std", "snowbridge-core/std", "snowbridge-outbound-queue-merkle-tree/std", "sp-arithmetic/std", "sp-core/std", "sp-io/std", "sp-runtime/std", "sp-std/std", ] runtime-benchmarks = [ "bridge-hub-common/runtime-benchmarks", "frame-benchmarking", "frame-benchmarking/runtime-benchmarks", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks", "snowbridge-core/runtime-benchmarks", "sp-runtime/runtime-benchmarks", ] try-runtime = [ "frame-support/try-runtime", "frame-system/try-runtime", "sp-runtime/try-runtime", ]