Refactoring Checkpoint: (WIP)

This commit is contained in:
2025-12-14 10:29:31 +03:00
parent 09735eb97a
commit c89d7cac55
1424 changed files with 6415 additions and 6064 deletions
@@ -0,0 +1,99 @@
[package]
name = "pezpallet-staking-score"
version = "1.0.0"
description = "PezkuwiChain Staking Score Calculation Pallet"
authors.workspace = true
homepage.workspace = true
edition.workspace = true
license.workspace = true
publish = false
repository.workspace = true
documentation = "https://docs.rs/pezpallet-staking-score"
[dependencies]
codec = { workspace = true, default-features = false, features = ["derive"] }
pezframe-benchmarking = { workspace = true, optional = true }
pezframe-support = { default-features = false, workspace = true }
pezframe-system = { default-features = false, workspace = true }
pezpallet-balances = { workspace = true, default-features = false, optional = true }
pezpallet-staking = { workspace = true, default-features = false, optional = true }
scale-info = { default-features = false, features = [
"derive",
], workspace = true }
serde = { version = "1.0.197", default-features = false, features = [
"derive",
], optional = true }
pezsp-runtime = { default-features = false, workspace = true }
pezsp-std = { default-features = false, workspace = true }
# PezkuwiChain'in özel tiplerini ve trait'lerini içeren kütüphane
pezkuwi-primitives = { workspace = true, default-features = false }
[dev-dependencies]
pezframe-election-provider-support = { workspace = true, features = ["std"] }
pezframe-support = { workspace = true, features = ["std"] }
pezframe-system = { workspace = true, features = ["std"] }
pezpallet-bags-list = { workspace = true, features = ["std"] }
pezpallet-balances = { workspace = true, features = ["std"] }
pezpallet-session = { workspace = true, features = ["std"] }
pezpallet-staking = { workspace = true, features = [
"runtime-benchmarks",
"std",
] }
pezpallet-timestamp = { workspace = true, features = ["std"] }
pezsp-core = { workspace = true, features = ["std"] }
pezsp-io = { workspace = true, features = ["std"] }
pezsp-npos-elections = { workspace = true, features = ["std"] }
pezsp-runtime = { workspace = true, features = ["std"] }
pezsp-staking = { workspace = true, features = ["std"] }
[features]
default = ["std"]
std = [
"codec/std",
"pezframe-benchmarking?/std",
"pezframe-election-provider-support/std",
"pezframe-support/std",
"pezframe-system/std",
"pezpallet-bags-list/std",
"pezpallet-balances?/std",
"pezpallet-session/std",
"pezpallet-staking?/std",
"pezpallet-timestamp/std",
"pezkuwi-primitives/std",
"scale-info/std",
"serde?/std",
"pezsp-core/std",
"pezsp-io/std",
"pezsp-npos-elections/std",
"pezsp-runtime/std",
"pezsp-staking/std",
"pezsp-std/std",
]
runtime-benchmarks = [
"pezframe-benchmarking/runtime-benchmarks",
"pezframe-election-provider-support/runtime-benchmarks",
"pezframe-support/runtime-benchmarks",
"pezframe-system/runtime-benchmarks",
"pezpallet-bags-list/runtime-benchmarks",
"pezpallet-balances/runtime-benchmarks",
"pezpallet-session/runtime-benchmarks",
"pezpallet-staking/runtime-benchmarks",
"pezpallet-timestamp/runtime-benchmarks",
"pezkuwi-primitives/runtime-benchmarks",
"pezsp-io/runtime-benchmarks",
"pezsp-npos-elections/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
"pezsp-staking/runtime-benchmarks",
]
try-runtime = [
"pezframe-election-provider-support/try-runtime",
"pezframe-support/try-runtime",
"pezframe-system/try-runtime",
"pezpallet-bags-list/try-runtime",
"pezpallet-balances?/try-runtime",
"pezpallet-session/try-runtime",
"pezpallet-staking?/try-runtime",
"pezpallet-timestamp/try-runtime",
"pezsp-runtime/try-runtime",
]