[package] name = "snowbridge-pallet-inbound-queue" description = "Snowbridge Inbound 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 = { optional = true, workspace = true, default-features = true } codec = { features = ["derive"], workspace = true } scale-info = { features = ["derive"], workspace = true } hex-literal = { optional = true, workspace = true, default-features = true } log = { workspace = true } alloy-primitives = { features = ["rlp"], workspace = true } alloy-sol-types = { workspace = true } frame-benchmarking = { optional = true, workspace = true } frame-support.workspace = true frame-system.workspace = true pallet-balances.workspace = true sp-core.workspace = true sp-std.workspace = true sp-io.workspace = true sp-runtime.workspace = true xcm.workspace = true xcm-executor.workspace = true snowbridge-core.workspace = true snowbridge-router-primitives.workspace = true snowbridge-beacon-primitives.workspace = true snowbridge-pallet-inbound-queue-fixtures = { optional = true, workspace = true } [dev-dependencies] frame-benchmarking = { default-features = true, path = "../../../../substrate/frame/benchmarking" } sp-keyring = { default-features = true, path = "../../../../substrate/primitives/keyring" } snowbridge-pallet-ethereum-client = { default-features = true, path = "../ethereum-client" } hex-literal = { workspace = true, default-features = true } [features] default = ["std"] std = [ "alloy-primitives/std", "alloy-sol-types/std", "codec/std", "frame-benchmarking/std", "frame-support/std", "frame-system/std", "log/std", "pallet-balances/std", "scale-info/std", "serde", "snowbridge-beacon-primitives/std", "snowbridge-core/std", "snowbridge-pallet-inbound-queue-fixtures?/std", "snowbridge-router-primitives/std", "sp-core/std", "sp-io/std", "sp-runtime/std", "sp-std/std", "xcm-executor/std", "xcm/std", ] runtime-benchmarks = [ "frame-benchmarking", "frame-benchmarking/runtime-benchmarks", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks", "hex-literal", "pallet-balances/runtime-benchmarks", "snowbridge-core/runtime-benchmarks", "snowbridge-pallet-inbound-queue-fixtures/runtime-benchmarks", "snowbridge-router-primitives/runtime-benchmarks", "sp-runtime/runtime-benchmarks", "xcm-executor/runtime-benchmarks", ] try-runtime = [ "frame-support/try-runtime", "frame-system/try-runtime", "pallet-balances/try-runtime", "sp-runtime/try-runtime", ]