1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-06 00:03:32 +00:00

build: update all dependencies

This commit is contained in:
Nick Craig-Wood
2025-08-13 13:31:40 +01:00
parent c3f721755d
commit 2c91772bf1
3 changed files with 230 additions and 227 deletions

View File

@@ -46,8 +46,8 @@ type Sorter struct {
cutoff int // number of entries above which we start extsort
extSort bool // true if we are ext sorting
inputChan chan string // for sending data to the ext sort
outputChan chan string // for receiving data from the ext sort
errChan chan error // for getting errors from the ext sort
outputChan <-chan string // for receiving data from the ext sort
errChan <-chan error // for getting errors from the ext sort
sorter *extsort.StringSorter // external string sort
errs *errcount.ErrCount // accumulate errors
}