Files
pezkuwi-sdk/bizinikiwi/pezframe/pezframe-metadata/Cargo.toml
T
pezkuwichain 3139ffa25e fix: Complete snowbridge pezpallet rebrand and critical bug fixes
- snowbridge-pezpallet-* → pezsnowbridge-pezpallet-* (201 refs)
- pallet/ directories → pezpallet/ (4 locations)
- Fixed pezpallet.rs self-include recursion bug
- Fixed sc-chain-spec hardcoded crate name in derive macro
- Reverted .pezpallet_by_name() to .pallet_by_name() (subxt API)
- Added BizinikiwiConfig type alias for zombienet tests
- Deleted obsolete session state files

Verified: pezsnowbridge-pezpallet-*, pezpallet-staking,
pezpallet-staking-async, pezframe-benchmarking-cli all pass cargo check
2025-12-16 09:57:23 +03:00

51 lines
1.2 KiB
TOML

[package]
name = "pezframe-metadata"
version = "23.0.1"
authors.workspace = true
edition = "2021"
license = "Apache-2.0"
homepage.workspace = true
repository.workspace = true
description = "Metadata types for Kurdistan SDK runtimes"
readme = "README.md"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
cfg-if = "1.0.0"
scale-info = { version = "2.0.0", default-features = false, optional = true, features = ["derive"] }
serde = { version = "1.0.101", default-features = false, optional = true, features = ["derive"] }
[features]
default = ["std", "current"]
# Feature flag for pre-V14 versions.
legacy = []
# The current stable metadata versions.
current = ["scale-info"]
# Unstable next metadata version.
unstable = ["current"]
# Serde support without relying on std features
serde_full = [
"scale-info/serde",
"codec/serde",
"serde",
"serde/alloc",
]
# Scale decode support without relying on std features
decode = ["scale-info/decode"]
std = [
"decode",
"serde_full",
"codec/std",
"scale-info/std",
"serde/std",
]