6b597bebcf
- Fix pezpallet-welati EnsureOrigin implementations (3 fixes)
- Remove incorrect #[cfg(not(feature = "runtime-benchmarks"))] blocks
- Affects EnsureSerok, EnsureParlementer, EnsureDiwan
- Fix asset-hub-zagros governance origins macros (2 fixes)
- Remove non-benchmark try_successful_origin from decl_unit_ensures!
- Remove non-benchmark try_successful_origin from decl_ensure!
- Rename snowbridge -> pezsnowbridge for consistency
- Update WORKFLOW_PLAN.md with build status and package names
- Correct package names: pezkuwi-teyrchain-bin, pezstaging-node-cli
- Mark completed builds: pezkuwi, pezkuwi-teyrchain-bin,
pezstaging-node-cli, teyrchain-template-node
45 lines
1.2 KiB
TOML
45 lines
1.2 KiB
TOML
[package]
|
|
name = "pezsnowbridge-pezpallet-inbound-queue-fixtures"
|
|
description = "Snowbridge Inbound Queue Test Fixtures"
|
|
version = "0.10.0"
|
|
authors = ["Snowfork <contact@snowfork.com>"]
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
license = "Apache-2.0"
|
|
categories = ["cryptography::cryptocurrencies"]
|
|
documentation = "https://docs.rs/pezsnowbridge-pezpallet-inbound-queue-fixtures"
|
|
homepage = { workspace = true }
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[package.metadata.pezkuwi-sdk]
|
|
exclude-from-umbrella = true
|
|
|
|
[dependencies]
|
|
hex-literal = { workspace = true, default-features = true }
|
|
pezsnowbridge-beacon-primitives = { workspace = true }
|
|
pezsnowbridge-core = { workspace = true }
|
|
pezsnowbridge-inbound-queue-primitives = { workspace = true }
|
|
pezsp-core = { workspace = true }
|
|
pezsp-std = { workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"pezsnowbridge-beacon-primitives/std",
|
|
"pezsnowbridge-core/std",
|
|
"pezsnowbridge-inbound-queue-primitives/std",
|
|
"pezsp-core/std",
|
|
"pezsp-std/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pezsnowbridge-beacon-primitives/runtime-benchmarks",
|
|
"pezsnowbridge-core/runtime-benchmarks",
|
|
"pezsnowbridge-inbound-queue-primitives/runtime-benchmarks",
|
|
]
|