Files
pezkuwi-sdk/cumulus/teyrchains/pallets/trust/Cargo.toml
T

107 lines
3.5 KiB
TOML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
[package]
name = "pallet-trust"
version = "1.0.0"
description = "PezkuwiChain Trust Score Engine Pallet"
authors.workspace = true
homepage.workspace = true
edition.workspace = true
license.workspace = true
publish = false
repository.workspace = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { workspace = true, default-features = false, features = ["derive"] }
scale-info = { default-features = false, features = [
"derive",
], workspace = true }
serde = { version = "1.0", default-features = false, features = [
"derive",
], optional = true }
frame-support = { default-features = false, workspace = true }
frame-system = { default-features = false, workspace = true }
log = { default-features = false, workspace = 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 }
# Palet bağımlılıkları (Trust puanı hesaplaması için gerekli)
# Standart Substrate paletleri için path belirtilmez, workspace=true kullanılır.
pallet-balances = { default-features = false, workspace = true }
# Özel PezkuwiChain paletleri için workspace inheritance kullanılır.
pallet-identity-kyc = { workspace = true, default-features = false }
pallet-perwerde = { workspace = true, default-features = false }
pallet-referral = { workspace = true, default-features = false }
pallet-staking-score = { workspace = true, default-features = false }
pallet-tiki = { workspace = true, default-features = false }
# --- Test ve Benchmark için Gerekli İsteğe Bağlı Bağımlılıklar ---
frame-benchmarking = { optional = true, workspace = true }
sp-core = { workspace = true, default-features = false, optional = true }
sp-io = { workspace = true, default-features = false, optional = true }
[dev-dependencies]
# Test için gerekli olan bağımlılıklar
sp-core = { workspace = true, default-features = false }
sp-io = { workspace = true, default-features = false }
[features]
default = ["std"]
std = [
"codec/std",
"frame-benchmarking?/std",
"frame-support/std",
"frame-system/std",
"log/std",
# Diğer paletlerin std özellikleri
"pallet-balances/std",
"pallet-identity-kyc/std",
"pallet-perwerde/std",
"pallet-referral/std",
"pallet-staking-score/std",
"pallet-tiki/std",
"pezkuwi-primitives/std",
"scale-info/std",
"serde", # serde'yi doğrudan feature olarak ekliyoruz
"serde?/std",
"sp-core?/std",
"sp-io?/std",
"sp-runtime/std",
"sp-std/std",
]
runtime-benchmarks = [
"frame-benchmarking/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
# Diğer paletlerin runtime-benchmarks özellikleri
"pallet-balances/runtime-benchmarks",
"pallet-identity-kyc/runtime-benchmarks",
"pallet-perwerde/runtime-benchmarks",
"pallet-referral/runtime-benchmarks",
"pallet-staking-score/runtime-benchmarks",
"pallet-tiki/runtime-benchmarks",
"pezkuwi-primitives/runtime-benchmarks",
"sp-core",
"sp-io",
"sp-io?/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]
try-runtime = [
"frame-support/try-runtime",
"frame-system/try-runtime",
# Diğer paletlerin try-runtime özellikleri
"pallet-balances/try-runtime",
"pallet-identity-kyc/try-runtime",
"pallet-perwerde/try-runtime",
"pallet-referral/try-runtime",
"pallet-staking-score/try-runtime",
"pallet-tiki/try-runtime",
"sp-runtime/try-runtime",
]