chore: [full-ci] bump dependencies

This commit is contained in:
Roman Perekhod
2025-07-04 17:04:32 +02:00
parent a69f24ef5f
commit 32b454d41e
958 changed files with 55387 additions and 40791 deletions

View File

@@ -93,14 +93,14 @@ func runesIndex(r1, r2 []rune) int {
return -1
}
func intArrayToString(ns []uint32) string {
func intArrayToString(ns []index) string {
if len(ns) == 0 {
return ""
}
b := []rune{}
for _, n := range ns {
b = append(b, intToRune(n))
b = append(b, intToRune(uint32(n)))
}
return string(b)
}