build(deps): upgrade xsync from v3 to v4 (#2554)

This commit is contained in:
Valentin Maerten
2025-12-07 12:28:31 +01:00
committed by GitHub
parent 69b345efc9
commit 3fb7919577
4 changed files with 7 additions and 9 deletions

View File

@@ -7,7 +7,7 @@ import (
"sync"
"time"
"github.com/puzpuzpuz/xsync/v3"
"github.com/puzpuzpuz/xsync/v4"
"github.com/sajari/fuzzy"
"github.com/go-task/task/v3/internal/logger"
@@ -71,7 +71,7 @@ type (
mkdirMutexMap map[string]*sync.Mutex
executionHashes map[string]context.Context
executionHashesMutex sync.Mutex
watchedDirs *xsync.MapOf[string, bool]
watchedDirs *xsync.Map[string, bool]
}
TempDir struct {
Remote string