Skip to content

Commit 681271d

Browse files
fix(deps): update all dependencies
1 parent cf58c4a commit 681271d

File tree

7 files changed

+541
-474
lines changed

7 files changed

+541
-474
lines changed

.github/workflows/codeql-analysis.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3636

3737
- name: Setup Go ${{ matrix.go }}
38-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
38+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
3939
with:
4040
go-version: ${{ matrix.go }}
4141

@@ -50,19 +50,19 @@ jobs:
5050
${{ runner.os }}-go-
5151
5252
- name: Setup Node.JS ${{ matrix.node }}
53-
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
53+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
5454
with:
5555
node-version: ${{ matrix.node }}
5656
cache: 'yarn'
5757

5858
- name: Initialize CodeQL
59-
uses: github/codeql-action/init@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
59+
uses: github/codeql-action/init@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13
6060
with:
6161
languages: ${{ matrix.language }}
6262

6363

6464
- name: Autobuild
65-
uses: github/codeql-action/autobuild@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
65+
uses: github/codeql-action/autobuild@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13
6666

6767
- name: Perform CodeQL Analysis
68-
uses: github/codeql-action/analyze@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
68+
uses: github/codeql-action/analyze@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2424

2525
- name: Setup Go ${{ matrix.go }}
26-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
26+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
2727
with:
2828
go-version: ${{ matrix.go }}
2929

3030
- name: Setup Node.JS ${{ matrix.node }}
31-
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
31+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
3232
with:
3333
node-version: ${{ matrix.node }}
3434
cache: 'yarn'

go.mod

+12-9
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/aperturerobotics/starpc
22

3-
go 1.23.0
3+
go 1.24
44

5-
toolchain go1.24.0
5+
toolchain go1.24.1
66

77
replace (
88
// This fork uses go-protobuf-lite and adds post-quantum crypto support.
@@ -13,19 +13,22 @@ replace (
1313
)
1414

1515
require (
16-
github.com/aperturerobotics/protobuf-go-lite v0.8.0 // latest
17-
github.com/aperturerobotics/util v1.28.1 // latest
16+
github.com/aperturerobotics/protobuf-go-lite v0.8.1 // latest
17+
github.com/aperturerobotics/util v1.29.1 // latest
1818
)
1919

2020
require (
21-
github.com/coder/websocket v1.8.12 // latest
22-
github.com/libp2p/go-libp2p v0.41.0 // latest
21+
github.com/coder/websocket v1.8.13 // latest
22+
github.com/libp2p/go-libp2p v0.41.1 // latest
2323
github.com/pkg/errors v0.9.1 // latest
2424
github.com/sirupsen/logrus v1.9.3 // latest
25-
google.golang.org/protobuf v1.36.5 // latest
25+
google.golang.org/protobuf v1.36.6 // latest
2626
)
2727

28-
require github.com/libp2p/go-yamux/v4 v4.0.1
28+
require (
29+
github.com/libp2p/go-yamux/v4 v4.0.1
30+
github.com/libp2p/go-yamux/v5 v5.0.0
31+
)
2932

3033
require (
3134
github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20240713111131-be6bf89c3008 // indirect
@@ -43,7 +46,7 @@ require (
4346
github.com/multiformats/go-varint v0.0.7 // indirect
4447
github.com/spaolacci/murmur3 v1.1.0 // indirect
4548
golang.org/x/crypto v0.31.0 // indirect
46-
golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa // indirect
49+
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 // indirect
4750
golang.org/x/sys v0.28.0 // indirect
4851
lukechampine.com/blake3 v1.3.0 // indirect
4952
)

go.sum

+11
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,16 @@ github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20240713111131-be6bf89c3
44
github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20240713111131-be6bf89c3008/go.mod h1:snaApCEDtrHHP6UWSLKiYNOZU9A5NyzccKenx9oZEzg=
55
github.com/aperturerobotics/protobuf-go-lite v0.8.0 h1:SoiTAVArmOrNTX31e6CC5Bem6HuOElg3YYNhp4AAPQc=
66
github.com/aperturerobotics/protobuf-go-lite v0.8.0/go.mod h1:y49wVEezRHg78uQ2OzLLZbtTTWuox+ChmaTuh6FLJW8=
7+
github.com/aperturerobotics/protobuf-go-lite v0.8.1 h1:CcBvqWOSep4VF3pPp+ZLcYQwPQu2kGOvL3bbF71bzKE=
8+
github.com/aperturerobotics/protobuf-go-lite v0.8.1/go.mod h1:6AD6TgBrC+aWprTirXrUASFvTbuIRAsuDLBNUthzcyA=
79
github.com/aperturerobotics/util v1.28.1 h1:FpTOt/tsawTrxDz4lrdglK47ZR2p0UM+GBB3zHhSUsc=
810
github.com/aperturerobotics/util v1.28.1/go.mod h1:tFCW8S1eUGvEohv9IebTxq5bgVZNfaKGLV9ELa6iKbI=
11+
github.com/aperturerobotics/util v1.29.1 h1:JGGP0A0OkTxoljCVm2xaMvxbaZIq7Z6YTpvfUhXp1iU=
12+
github.com/aperturerobotics/util v1.29.1/go.mod h1:6840KxUK/yt59V2RFzlu6XooppQ2UEitB+AtK6ybRKc=
913
github.com/coder/websocket v1.8.12 h1:5bUXkEPPIbewrnkU8LTCLVaxi4N4J8ahufH2vlo4NAo=
1014
github.com/coder/websocket v1.8.12/go.mod h1:LNVeNrXQZfe5qhS9ALED3uA+l5pPqvwXg3CKoDBB2gs=
15+
github.com/coder/websocket v1.8.13 h1:f3QZdXy7uGVz+4uCJy2nTZyM0yTBj8yANEHhqlXZ9FE=
16+
github.com/coder/websocket v1.8.13/go.mod h1:LNVeNrXQZfe5qhS9ALED3uA+l5pPqvwXg3CKoDBB2gs=
1117
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
1218
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
1319
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
@@ -23,6 +29,7 @@ github.com/libp2p/go-libp2p-testing v0.12.0 h1:EPvBb4kKMWO29qP4mZGyhVzUyR25dvfUI
2329
github.com/libp2p/go-libp2p-testing v0.12.0/go.mod h1:KcGDRXyN7sQCllucn1cOOS+Dmm7ujhfEyXQL5lvkcPg=
2430
github.com/libp2p/go-yamux/v4 v4.0.1 h1:FfDR4S1wj6Bw2Pqbc8Uz7pCxeRBPbwsBbEdfwiCypkQ=
2531
github.com/libp2p/go-yamux/v4 v4.0.1/go.mod h1:NWjl8ZTLOGlozrXSOZ/HlfG++39iKNnM5wwmtQP1YB4=
32+
github.com/libp2p/go-yamux/v5 v5.0.0/go.mod h1:en+3cdX51U0ZslwRdRLrvQsdayFt3TSUKvBGErzpWbU=
2633
github.com/minio/sha256-simd v1.0.1 h1:6kaan5IFmwTNynnKKpDHe6FWHohJOHhCPchzK49dzMM=
2734
github.com/minio/sha256-simd v1.0.1/go.mod h1:Pz6AKMiUdngCLpeTL/RJY1M9rUuPMYujV5xJjtbRSN8=
2835
github.com/mr-tron/base58 v1.2.0 h1:T/HDJBh4ZCPbU39/+c3rRvE0uKBQlU27+QI8LJ4t64o=
@@ -57,12 +64,16 @@ golang.org/x/crypto v0.31.0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U=
5764
golang.org/x/crypto v0.31.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk=
5865
golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa h1:t2QcU6V556bFjYgu4L6C+6VrCPyJZ+eyRsABUPs1mz4=
5966
golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa/go.mod h1:BHOTPb3L19zxehTsLoJXVaTktb06DFgmdW6Wb9s8jqk=
67+
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 h1:nDVHiLt8aIbd/VzvPWN6kSOPE7+F/fNFDSXLVYkE/Iw=
68+
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394/go.mod h1:sIifuuw/Yco/y6yb6+bDNfyeQ/MdPUy/hKEMYQV17cM=
6069
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
6170
golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
6271
golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA=
6372
golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
6473
google.golang.org/protobuf v1.36.5 h1:tPhr+woSbjfYvY6/GPufUoYizxw1cF/yFoxJ2fmpwlM=
6574
google.golang.org/protobuf v1.36.5/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE=
75+
google.golang.org/protobuf v1.36.6 h1:z1NpPI8ku2WgiWnf+t9wTPsn6eP1L7ksHUlkfLvd9xY=
76+
google.golang.org/protobuf v1.36.6/go.mod h1:jduwjTPXsFjZGTmRluh+L6NjiWu7pchiJ2/5YcXBHnY=
6677
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
6778
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
6879
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=

tools/go.mod

+37-37
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ replace google.golang.org/protobuf => github.com/aperturerobotics/protobuf-go v1
88

99
require (
1010
github.com/aperturerobotics/goprotowrap v0.3.2
11-
github.com/aperturerobotics/protobuf-go-lite v0.8.0
11+
github.com/aperturerobotics/protobuf-go-lite v0.8.1
1212
github.com/aperturerobotics/starpc v0.32.15
1313
)
1414

1515
require (
16-
github.com/evanw/esbuild v0.25.0
17-
github.com/golangci/golangci-lint v1.64.6
16+
github.com/evanw/esbuild v0.25.1
17+
github.com/golangci/golangci-lint/v2 v2.0.2
1818
github.com/psampaz/go-mod-outdated v0.9.0
19-
golang.org/x/tools v0.30.0
19+
golang.org/x/tools v0.31.0
2020
mvdan.cc/gofumpt v0.7.0
2121
)
2222

@@ -25,41 +25,41 @@ require (
2525
4d63.com/gochecknoglobals v0.2.2 // indirect
2626
github.com/4meepo/tagalign v1.4.2 // indirect
2727
github.com/Abirdcfly/dupword v0.1.3 // indirect
28-
github.com/Antonboom/errname v1.0.0 // indirect
29-
github.com/Antonboom/nilnil v1.0.1 // indirect
30-
github.com/Antonboom/testifylint v1.5.2 // indirect
31-
github.com/BurntSushi/toml v1.4.1-0.20240526193622-a339e1f7089c // indirect
28+
github.com/Antonboom/errname v1.1.0 // indirect
29+
github.com/Antonboom/nilnil v1.1.0 // indirect
30+
github.com/Antonboom/testifylint v1.6.0 // indirect
31+
github.com/BurntSushi/toml v1.5.0 // indirect
3232
github.com/Crocmagnon/fatcontext v0.7.1 // indirect
3333
github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24 // indirect
3434
github.com/GaijinEntertainment/go-exhaustruct/v3 v3.3.1 // indirect
35-
github.com/Masterminds/semver/v3 v3.3.0 // indirect
36-
github.com/OpenPeeDeeP/depguard/v2 v2.2.0 // indirect
35+
github.com/Masterminds/semver/v3 v3.3.1 // indirect
36+
github.com/OpenPeeDeeP/depguard/v2 v2.2.1 // indirect
3737
github.com/alecthomas/go-check-sumtype v0.3.1 // indirect
3838
github.com/alexkohler/nakedret/v2 v2.0.5 // indirect
3939
github.com/alexkohler/prealloc v1.0.0 // indirect
4040
github.com/alingse/asasalint v0.0.11 // indirect
4141
github.com/alingse/nilnesserr v0.1.2 // indirect
4242
github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20240713111131-be6bf89c3008 // indirect
43-
github.com/aperturerobotics/util v1.28.1 // indirect
43+
github.com/aperturerobotics/util v1.29.1 // indirect
4444
github.com/ashanbrown/forbidigo v1.6.0 // indirect
4545
github.com/ashanbrown/makezero v1.2.0 // indirect
4646
github.com/beorn7/perks v1.0.1 // indirect
4747
github.com/bkielbasa/cyclop v1.2.3 // indirect
4848
github.com/blizzy78/varnamelen v0.8.0 // indirect
49-
github.com/bombsimon/wsl/v4 v4.5.0 // indirect
50-
github.com/breml/bidichk v0.3.2 // indirect
51-
github.com/breml/errchkjson v0.4.0 // indirect
49+
github.com/bombsimon/wsl/v4 v4.6.0 // indirect
50+
github.com/breml/bidichk v0.3.3 // indirect
51+
github.com/breml/errchkjson v0.4.1 // indirect
5252
github.com/butuzov/ireturn v0.3.1 // indirect
5353
github.com/butuzov/mirror v1.3.0 // indirect
54-
github.com/catenacyber/perfsprint v0.8.2 // indirect
54+
github.com/catenacyber/perfsprint v0.9.1 // indirect
5555
github.com/ccojocar/zxcvbn-go v1.0.2 // indirect
5656
github.com/cespare/xxhash/v2 v2.3.0 // indirect
5757
github.com/charithe/durationcheck v0.0.10 // indirect
5858
github.com/chavacava/garif v0.1.0 // indirect
59-
github.com/ckaznocha/intrange v0.3.0 // indirect
60-
github.com/coder/websocket v1.8.13-0.20240815203528-e46e0200618d // indirect
59+
github.com/ckaznocha/intrange v0.3.1 // indirect
60+
github.com/coder/websocket v1.8.13 // indirect
6161
github.com/curioswitch/go-reassign v0.3.0 // indirect
62-
github.com/daixiang0/gci v0.13.5 // indirect
62+
github.com/daixiang0/gci v0.13.6 // indirect
6363
github.com/davecgh/go-spew v1.1.1 // indirect
6464
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0 // indirect
6565
github.com/denis-tingaikin/go-header v0.5.0 // indirect
@@ -69,8 +69,8 @@ require (
6969
github.com/firefart/nonamedreturns v1.0.5 // indirect
7070
github.com/fsnotify/fsnotify v1.8.0 // indirect
7171
github.com/fzipp/gocyclo v0.6.0 // indirect
72-
github.com/ghostiam/protogetter v0.3.9 // indirect
73-
github.com/go-critic/go-critic v0.12.0 // indirect
72+
github.com/ghostiam/protogetter v0.3.12 // indirect
73+
github.com/go-critic/go-critic v0.13.0 // indirect
7474
github.com/go-toolsmith/astcast v1.1.0 // indirect
7575
github.com/go-toolsmith/astcopy v1.1.0 // indirect
7676
github.com/go-toolsmith/astequal v1.2.0 // indirect
@@ -83,7 +83,7 @@ require (
8383
github.com/gobwas/glob v0.2.3 // indirect
8484
github.com/gofrs/flock v0.12.1 // indirect
8585
github.com/golang/protobuf v1.5.4 // indirect
86-
github.com/golangci/dupl v0.0.0-20180902072040-3e9179ac440a // indirect
86+
github.com/golangci/dupl v0.0.0-20250308024227-f665c8d69b32 // indirect
8787
github.com/golangci/go-printf-func-name v0.1.0 // indirect
8888
github.com/golangci/gofmt v0.0.0-20250106114630-d62b90e6713d // indirect
8989
github.com/golangci/misspell v0.6.0 // indirect
@@ -121,10 +121,10 @@ require (
121121
github.com/ldez/usetesting v0.4.2 // indirect
122122
github.com/leonklingele/grouper v1.1.2 // indirect
123123
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
124-
github.com/libp2p/go-libp2p v0.41.0 // indirect
124+
github.com/libp2p/go-libp2p v0.41.1 // indirect
125125
github.com/libp2p/go-yamux/v4 v4.0.2-0.20240826150533-e92055b23e0e // indirect
126126
github.com/libp2p/go-yamux/v5 v5.0.0 // indirect
127-
github.com/macabu/inamedparam v0.1.3 // indirect
127+
github.com/macabu/inamedparam v0.2.0 // indirect
128128
github.com/magiconair/properties v1.8.6 // indirect
129129
github.com/maratori/testableexamples v1.0.0 // indirect
130130
github.com/maratori/testpackage v1.1.1 // indirect
@@ -157,25 +157,25 @@ require (
157157
github.com/pkg/errors v0.9.1 // indirect
158158
github.com/pmezard/go-difflib v1.0.0 // indirect
159159
github.com/polyfloyd/go-errorlint v1.7.1 // indirect
160-
github.com/prometheus/client_golang v1.21.0 // indirect
160+
github.com/prometheus/client_golang v1.21.1 // indirect
161161
github.com/prometheus/client_model v0.6.1 // indirect
162162
github.com/prometheus/common v0.62.0 // indirect
163163
github.com/prometheus/procfs v0.15.1 // indirect
164-
github.com/quasilyte/go-ruleguard v0.4.3-0.20240823090925-0fe6f58b47b1 // indirect
164+
github.com/quasilyte/go-ruleguard v0.4.4 // indirect
165165
github.com/quasilyte/go-ruleguard/dsl v0.3.22 // indirect
166166
github.com/quasilyte/gogrep v0.5.0 // indirect
167167
github.com/quasilyte/regex/syntax v0.0.0-20210819130434-b3f0c404a727 // indirect
168168
github.com/quasilyte/stdinfo v0.0.0-20220114132959-f7386bf02567 // indirect
169169
github.com/raeperd/recvcheck v0.2.0 // indirect
170170
github.com/rivo/uniseg v0.4.7 // indirect
171171
github.com/rogpeppe/go-internal v1.14.1 // indirect
172-
github.com/ryancurrah/gomodguard v1.3.5 // indirect
172+
github.com/ryancurrah/gomodguard v1.4.1 // indirect
173173
github.com/ryanrolds/sqlclosecheck v0.5.1 // indirect
174174
github.com/sanposhiho/wastedassign/v2 v2.1.0 // indirect
175175
github.com/santhosh-tekuri/jsonschema/v6 v6.0.1 // indirect
176176
github.com/sashamelentyev/interfacebloat v1.1.0 // indirect
177177
github.com/sashamelentyev/usestdlibvars v1.28.0 // indirect
178-
github.com/securego/gosec/v2 v2.22.1 // indirect
178+
github.com/securego/gosec/v2 v2.22.2 // indirect
179179
github.com/sirupsen/logrus v1.9.3 // indirect
180180
github.com/sivchari/containedctx v1.0.3 // indirect
181181
github.com/sivchari/tenv v1.12.1 // indirect
@@ -195,15 +195,15 @@ require (
195195
github.com/subosito/gotenv v1.4.1 // indirect
196196
github.com/tdakkota/asciicheck v0.4.1 // indirect
197197
github.com/tetafro/godot v1.5.0 // indirect
198-
github.com/timakin/bodyclose v0.0.0-20241017074812-ed6a65f985e3 // indirect
198+
github.com/timakin/bodyclose v0.0.0-20241222091800-1db5c5ca4d67 // indirect
199199
github.com/timonwong/loggercheck v0.10.1 // indirect
200200
github.com/tomarrell/wrapcheck/v2 v2.10.0 // indirect
201201
github.com/tommy-muehle/go-mnd/v2 v2.5.1 // indirect
202202
github.com/ultraware/funlen v0.2.0 // indirect
203203
github.com/ultraware/whitespace v0.2.0 // indirect
204204
github.com/uudashr/gocognit v1.2.0 // indirect
205205
github.com/uudashr/iface v1.3.1 // indirect
206-
github.com/xen0n/gosmopolitan v1.2.2 // indirect
206+
github.com/xen0n/gosmopolitan v1.3.0 // indirect
207207
github.com/yagipy/maintidx v1.0.0 // indirect
208208
github.com/yeya24/promlinter v0.3.0 // indirect
209209
github.com/ykadowak/zerologlint v0.1.5 // indirect
@@ -214,17 +214,17 @@ require (
214214
go.uber.org/multierr v1.11.0 // indirect
215215
go.uber.org/zap v1.27.0 // indirect
216216
golang.org/x/crypto v0.35.0 // indirect
217-
golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa // indirect
217+
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 // indirect
218218
golang.org/x/exp/typeparams v0.0.0-20250210185358-939b2ce775ac // indirect
219-
golang.org/x/mod v0.23.0 // indirect
220-
golang.org/x/sync v0.11.0 // indirect
221-
golang.org/x/sys v0.30.0 // indirect
222-
golang.org/x/text v0.22.0 // indirect
223-
google.golang.org/protobuf v1.36.5 // indirect
219+
golang.org/x/mod v0.24.0 // indirect
220+
golang.org/x/sync v0.12.0 // indirect
221+
golang.org/x/sys v0.31.0 // indirect
222+
golang.org/x/text v0.23.0 // indirect
223+
google.golang.org/protobuf v1.36.6 // indirect
224224
gopkg.in/ini.v1 v1.67.0 // indirect
225225
gopkg.in/yaml.v2 v2.4.0 // indirect
226226
gopkg.in/yaml.v3 v3.0.1 // indirect
227-
honnef.co/go/tools v0.6.0 // indirect
227+
honnef.co/go/tools v0.6.1 // indirect
228228
lukechampine.com/blake3 v1.4.0 // indirect
229-
mvdan.cc/unparam v0.0.0-20240528143540-8a5130ca722f // indirect
229+
mvdan.cc/unparam v0.0.0-20250301125049-0df0534333a4 // indirect
230230
)

0 commit comments

Comments
 (0)