Files
pezkuwi-sdk/pezbridges/pezsnowbridge/primitives/beacon/Cargo.toml
T
pezkuwichain 3ddf58cef9 fix: EnsureOrigin try_successful_origin and snowbridge rename
- 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
2025-12-25 01:26:18 +03:00

68 lines
1.6 KiB
TOML

[package]
name = "pezsnowbridge-beacon-primitives"
description = "Snowbridge Beacon Primitives"
version = "0.2.0"
authors = ["Snowfork <contact@snowfork.com>"]
edition.workspace = true
repository.workspace = true
license = "Apache-2.0"
categories = ["cryptography::cryptocurrencies"]
documentation = "https://docs.rs/pezsnowbridge-beacon-primitives"
homepage = { workspace = true }
[lints]
workspace = true
[package.metadata.pezkuwi-sdk]
exclude-from-umbrella = true
[dependencies]
codec = { workspace = true }
hex = { workspace = true }
rlp = { workspace = true }
scale-info = { features = ["derive"], workspace = true }
serde = { optional = true, features = [
"derive",
], workspace = true, default-features = true }
pezframe-support = { workspace = true }
pezsp-core = { workspace = true }
pezsp-io = { workspace = true }
pezsp-runtime = { workspace = true }
pezsp-std = { workspace = true }
byte-slice-cast = { workspace = true }
ssz_rs = { workspace = true }
ssz_rs_derive = { workspace = true }
milagro-bls = { workspace = true }
pezsnowbridge-ethereum = { workspace = true }
[dev-dependencies]
hex-literal = { workspace = true, default-features = true }
[features]
default = ["std"]
std = [
"byte-slice-cast/std",
"codec/std",
"hex/std",
"milagro-bls/std",
"pezframe-support/std",
"pezsnowbridge-ethereum/std",
"pezsp-core/std",
"pezsp-io/std",
"pezsp-runtime/std",
"pezsp-std/std",
"rlp/std",
"scale-info/std",
"serde",
"ssz_rs/std",
]
runtime-benchmarks = [
"pezframe-support/runtime-benchmarks",
"pezsnowbridge-ethereum/runtime-benchmarks",
"pezsp-io/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
]