[package] name = "pallet-bridge-teyrchains" version = "0.7.0" description = "Module that allows bridged relay chains to exchange information on their teyrchains' 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 } scale-info = { features = ["derive"], workspace = true } tracing = { workspace = true } # Bridge Dependencies bp-header-chain = { workspace = true } bp-pezkuwi-core = { workspace = true } bp-runtime = { workspace = true } bp-teyrchains = { workspace = true } pallet-bridge-grandpa = { workspace = true } # Substrate Dependencies 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 = { workspace = true, default-features = true } bp-test-utils = { workspace = true, default-features = true } sp-core = { workspace = true, default-features = true } sp-io = { workspace = true, default-features = true } [features] default = ["std"] std = [ "bp-header-chain/std", "bp-pezkuwi-core/std", "bp-runtime/std", "bp-teyrchains/std", "codec/std", "frame-benchmarking/std", "frame-support/std", "frame-system/std", "pallet-bridge-grandpa/std", "scale-info/std", "sp-runtime/std", "sp-std/std", "tracing/std", ] runtime-benchmarks = [ "bp-header-chain/runtime-benchmarks", "bp-pezkuwi-core/runtime-benchmarks", "bp-runtime/runtime-benchmarks", "bp-test-utils/runtime-benchmarks", "bp-teyrchains/runtime-benchmarks", "frame-benchmarking/runtime-benchmarks", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks", "pallet-bridge-grandpa/runtime-benchmarks", "sp-io/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", ]