Skip to content

Commit ee1a06e

Browse files
udpate renterd dependency to v2
1 parent 2af33ca commit ee1a06e

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

cmd/fsd/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ import (
2525
"go.sia.tech/fsd/renterd"
2626
"go.sia.tech/fsd/renterd/downloader"
2727
"go.sia.tech/jape"
28-
"go.sia.tech/renterd/bus"
29-
"go.sia.tech/renterd/worker"
28+
"go.sia.tech/renterd/v2/bus"
29+
"go.sia.tech/renterd/v2/worker"
3030
"go.uber.org/zap"
3131
"go.uber.org/zap/zapcore"
3232
"gopkg.in/yaml.v3"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ require (
2020
github.com/multiformats/go-multicodec v0.9.0
2121
github.com/multiformats/go-multihash v0.2.3
2222
go.sia.tech/jape v0.12.1
23-
go.sia.tech/renterd v1.1.2-0.20250310164423-49c892b00d1b
23+
go.sia.tech/renterd/v2 v2.0.2-0.20250312081818-65ef6bdb87ec
2424
go.uber.org/zap v1.27.0
2525
gopkg.in/yaml.v3 v3.0.1
2626
lukechampine.com/frand v1.5.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -615,8 +615,8 @@ go.sia.tech/jape v0.12.1 h1:xr+o9V8FO8ScRqbSaqYf9bjj1UJ2eipZuNcI1nYousU=
615615
go.sia.tech/jape v0.12.1/go.mod h1:wU+h6Wh5olDjkPXjF0tbZ1GDgoZ6VTi4naFw91yyWC4=
616616
go.sia.tech/mux v1.4.0 h1:LgsLHtn7l+25MwrgaPaUCaS8f2W2/tfvHIdXps04sVo=
617617
go.sia.tech/mux v1.4.0/go.mod h1:iNFi9ifFb2XhuD+LF4t2HBb4Mvgq/zIPKqwXU/NlqHA=
618-
go.sia.tech/renterd v1.1.2-0.20250310164423-49c892b00d1b h1:sK69YBRi3/Be34ZHj7/oVDWV0miEmIZVKY6kXBF2kRk=
619-
go.sia.tech/renterd v1.1.2-0.20250310164423-49c892b00d1b/go.mod h1:c90UyoI1UiDI07+HWCUahyXnPJNQ2bOIx1/vBlZCrr4=
618+
go.sia.tech/renterd/v2 v2.0.2-0.20250312081818-65ef6bdb87ec h1:e8k7TQGI1Ls7eDW83XVMYXatwxrwmynvZKw0GkeCgww=
619+
go.sia.tech/renterd/v2 v2.0.2-0.20250312081818-65ef6bdb87ec/go.mod h1:KdRAE7nLKlGxTZNnzBfUygMnRGPxPmGJVmSOA2R3JkY=
620620
go.uber.org/atomic v1.6.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=
621621
go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=
622622
go.uber.org/atomic v1.11.0 h1:ZvwS0R+56ePWxUNi+Atn9dWONBPp/AUETXlHW0DxSjE=

renterd/downloader/downloader.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ import (
1515
blocks "github.com/ipfs/go-block-format"
1616
"github.com/ipfs/go-cid"
1717
mh "github.com/multiformats/go-multihash"
18-
"go.sia.tech/renterd/api"
19-
"go.sia.tech/renterd/worker"
18+
"go.sia.tech/renterd/v2/api"
19+
"go.sia.tech/renterd/v2/worker"
2020
"go.uber.org/zap"
2121
)
2222

renterd/options.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package renterd
22

33
import (
4-
"go.sia.tech/renterd/bus"
5-
"go.sia.tech/renterd/worker"
4+
"go.sia.tech/renterd/v2/bus"
5+
"go.sia.tech/renterd/v2/worker"
66
"go.uber.org/zap"
77
)
88

renterd/store.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ import (
1313
format "github.com/ipfs/go-ipld-format"
1414
"github.com/multiformats/go-multicodec"
1515
"github.com/multiformats/go-multihash"
16-
"go.sia.tech/renterd/api"
17-
"go.sia.tech/renterd/bus"
18-
"go.sia.tech/renterd/worker"
16+
"go.sia.tech/renterd/v2/api"
17+
"go.sia.tech/renterd/v2/bus"
18+
"go.sia.tech/renterd/v2/worker"
1919
"go.uber.org/zap"
2020
)
2121

0 commit comments

Comments
 (0)