feat: initialize Kurdistan SDK - independent fork of Polkadot SDK

This commit is contained in:
2025-12-13 15:44:15 +03:00
commit e4778b4576
6838 changed files with 1847450 additions and 0 deletions
@@ -0,0 +1,29 @@
[package]
name = "binary-merkle-tree"
version = "13.0.0"
authors.workspace = true
edition.workspace = true
license = "Apache-2.0"
repository.workspace = true
description = "A no-std/Substrate compatible library to construct binary merkle tree."
homepage.workspace = true
[lints]
workspace = true
[dependencies]
array-bytes = { optional = true, workspace = true, default-features = true }
codec = { workspace = true, features = ["derive"] }
hash-db = { workspace = true }
log = { optional = true, workspace = true }
[dev-dependencies]
array-bytes = { workspace = true, default-features = true }
sp-core = { workspace = true, default-features = true }
sp-runtime = { workspace = true, default-features = true }
[features]
debug = ["array-bytes", "log"]
default = ["debug", "std"]
runtime-benchmarks = ["sp-runtime/runtime-benchmarks"]
std = ["codec/std", "hash-db/std", "log/std", "sp-core/std", "sp-runtime/std"]