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,14 @@
#!/bin/bash
ROOT_TOML="./Cargo.toml"
echo "Processing $ROOT_TOML..."
# Find lines that have path = "..." and version = "..."
# and remove only the version = "..." part, regardless of other fields
sed -i.bak -E 's/(path\s*=\s*"[^"]*"\s*(,\s*[^,]*?)*)\s*,\s*version\s*=\s*"[^"]*"/\1/g' "$ROOT_TOML"
# Clean up backup
rm -f "${ROOT_TOML}.bak"
echo "Done. Removed version fields from local path dependencies."