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
+53
View File
@@ -0,0 +1,53 @@
[package]
name = "bp-test-utils"
version = "0.7.0"
description = "Utilities for testing substrate-based runtime bridge code"
authors.workspace = true
edition.workspace = true
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
repository.workspace = true
[lints]
workspace = true
[dependencies]
bp-header-chain = { workspace = true }
bp-pezkuwi-core = { workspace = true }
bp-runtime = { features = ["test-helpers"], workspace = true }
bp-teyrchains = { workspace = true }
codec = { workspace = true }
ed25519-dalek = { workspace = true }
finality-grandpa = { workspace = true }
sp-application-crypto = { workspace = true }
sp-consensus-grandpa = { workspace = true }
sp-core = { workspace = true }
sp-runtime = { workspace = true }
sp-std = { workspace = true }
sp-trie = { workspace = true }
[features]
default = ["std"]
std = [
"bp-header-chain/std",
"bp-pezkuwi-core/std",
"bp-runtime/std",
"bp-teyrchains/std",
"codec/std",
"ed25519-dalek/std",
"finality-grandpa/std",
"sp-application-crypto/std",
"sp-consensus-grandpa/std",
"sp-core/std",
"sp-runtime/std",
"sp-std/std",
"sp-trie/std",
]
runtime-benchmarks = [
"bp-header-chain/runtime-benchmarks",
"bp-pezkuwi-core/runtime-benchmarks",
"bp-runtime/runtime-benchmarks",
"bp-teyrchains/runtime-benchmarks",
"sp-consensus-grandpa/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
"sp-trie/runtime-benchmarks",
]