feat: initialize Kurdistan SDK - independent fork of Polkadot SDK

This commit is contained in:
2025-12-13 15:44:15 +03:00
commit 286de54384
6841 changed files with 1848356 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
[package]
name = "pezkuwi-teyrchain-primitives"
description = "Types and utilities for creating and working with teyrchains"
authors.workspace = true
edition.workspace = true
license.workspace = true
version = "6.0.0"
homepage.workspace = true
repository.workspace = true
[lints]
workspace = true
[dependencies]
# note: special care is taken to avoid inclusion of `sp-io` externals when compiling
# this crate for WASM. This is critical to avoid forcing all teyrchain WASM into implementing
# various unnecessary Substrate-specific endpoints.
array-bytes = { workspace = true }
bounded-collections = { features = ["serde"], workspace = true }
codec = { features = ["derive"], workspace = true }
derive_more = { workspace = true, default-features = true }
pezkuwi-core-primitives = { workspace = true }
scale-info = { features = ["derive", "serde"], workspace = true }
sp-core = { features = ["serde"], workspace = true }
sp-runtime = { features = ["serde"], workspace = true }
sp-weights = { workspace = true }
# all optional crates.
serde = { features = ["alloc", "derive"], workspace = true }
[features]
default = ["std"]
wasm-api = []
std = [
"bounded-collections/std",
"codec/std",
"pezkuwi-core-primitives/std",
"scale-info/std",
"serde/std",
"sp-core/std",
"sp-runtime/std",
"sp-weights/std",
]
runtime-benchmarks = [
"pezkuwi-core-primitives/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]