96 lines
3.2 KiB
TOML
96 lines
3.2 KiB
TOML
[package]
|
|
name = "pallet-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
|
|
|
|
[dependencies]
|
|
codec = { workspace = true, default-features = false, features = ["derive"] }
|
|
frame-benchmarking = { workspace = true, optional = true }
|
|
frame-support = { default-features = false, workspace = true }
|
|
frame-system = { default-features = false, workspace = true }
|
|
pallet-balances = { workspace = true, default-features = false, optional = true }
|
|
pallet-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 }
|
|
sp-runtime = { default-features = false, workspace = true }
|
|
sp-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]
|
|
frame-election-provider-support = { workspace = true, features = ["std"] }
|
|
frame-support = { workspace = true, features = ["std"] }
|
|
frame-system = { workspace = true, features = ["std"] }
|
|
pallet-bags-list = { workspace = true, features = ["std"] }
|
|
pallet-balances = { workspace = true, features = ["std"] }
|
|
pallet-session = { workspace = true, features = ["std"] }
|
|
pallet-staking = { workspace = true, features = ["runtime-benchmarks", "std"] }
|
|
pallet-timestamp = { workspace = true, features = ["std"] }
|
|
sp-core = { workspace = true, features = ["std"] }
|
|
sp-io = { workspace = true, features = ["std"] }
|
|
sp-npos-elections = { workspace = true, features = ["std"] }
|
|
sp-runtime = { workspace = true, features = ["std"] }
|
|
sp-staking = { workspace = true, features = ["std"] }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"frame-benchmarking?/std",
|
|
"frame-election-provider-support/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"pallet-bags-list/std",
|
|
"pallet-balances?/std",
|
|
"pallet-session/std",
|
|
"pallet-staking?/std",
|
|
"pallet-timestamp/std",
|
|
"pezkuwi-primitives/std",
|
|
"scale-info/std",
|
|
"serde?/std",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-npos-elections/std",
|
|
"sp-runtime/std",
|
|
"sp-staking/std",
|
|
"sp-std/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-election-provider-support/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"pallet-bags-list/runtime-benchmarks",
|
|
"pallet-balances/runtime-benchmarks",
|
|
"pallet-session/runtime-benchmarks",
|
|
"pallet-staking/runtime-benchmarks",
|
|
"pallet-timestamp/runtime-benchmarks",
|
|
"pezkuwi-primitives/runtime-benchmarks",
|
|
"sp-io/runtime-benchmarks",
|
|
"sp-npos-elections/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
"sp-staking/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"frame-election-provider-support/try-runtime",
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"pallet-bags-list/try-runtime",
|
|
"pallet-balances?/try-runtime",
|
|
"pallet-session/try-runtime",
|
|
"pallet-staking?/try-runtime",
|
|
"pallet-timestamp/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|