[package] name = "bridge-hub-common" version = "0.0.0" authors.workspace = true edition.workspace = true description = "Bridge hub common utilities" license = "Apache-2.0" [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } scale-info = { version = "2.11.1", default-features = false, features = ["derive"] } frame-support = { path = "../../../../../substrate/frame/support", default-features = false } sp-std = { path = "../../../../../substrate/primitives/std", default-features = false } sp-core = { path = "../../../../../substrate/primitives/core", default-features = false } sp-runtime = { path = "../../../../../substrate/primitives/runtime", default-features = false } cumulus-primitives-core = { path = "../../../../primitives/core", default-features = false } xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false } pallet-message-queue = { path = "../../../../../substrate/frame/message-queue", default-features = false } snowbridge-core = { path = "../../../../../bridges/snowbridge/primitives/core", default-features = false } [features] default = ["std"] std = [ "codec/std", "cumulus-primitives-core/std", "frame-support/std", "pallet-message-queue/std", "scale-info/std", "snowbridge-core/std", "sp-core/std", "sp-runtime/std", "sp-std/std", "xcm/std", ] runtime-benchmarks = [ "cumulus-primitives-core/runtime-benchmarks", "frame-support/runtime-benchmarks", "pallet-message-queue/runtime-benchmarks", "snowbridge-core/runtime-benchmarks", "sp-runtime/runtime-benchmarks", ]