Skip to content

Commit 47e6844

Browse files
committed
Drop redundant linters.
The golangci-lint tool includes various other linters, including staticcheck and goimports. This patch configures golangci-lint to do the work that was being done by other standalone linters, then drops the other linters from our configs.
1 parent b1a40f9 commit 47e6844

5 files changed

Lines changed: 7 additions & 82 deletions

File tree

.github/workflows/build-test.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,3 @@ jobs:
2121
shell: bash
2222
run: |
2323
make lint
24-
- name: staticcheck
25-
shell: bash
26-
run: |
27-
make staticcheck
28-
- name: vet
29-
shell: bash
30-
run: |
31-
make vet
32-
- name: fmt
33-
shell: bash
34-
run: |
35-
make fmt
36-

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ linters:
1818

1919
formatters:
2020
enable:
21-
- gofmt
21+
- goimports
2222
- golines
2323
settings:
2424
golines:

Makefile

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,8 @@ VERSION := $(shell cat $(CURDIR)/VERSION)
1818
generate:
1919
@ echo "+ Generating SDK..."
2020
@ go generate ./...
21-
@ echo "+ Updating imports..."
22-
@ go tool -modfile tools/go.mod goimports -w oxide/*.go
2321
@ echo "+ Formatting generated SDK..."
24-
@ gofmt -s -w oxide/*.go
22+
@ $(MAKE) fmt
2523
@ echo "+ Tidying up modules..."
2624
@ go mod tidy
2725

@@ -32,7 +30,7 @@ $(NAME): $(wildcard *.go) $(wildcard */*.go)
3230
@echo "+ $@"
3331
$(GO) build -tags "$(BUILDTAGS)" ${GO_LDFLAGS} -o $(NAME) ./internal/generate/
3432

35-
all: generate test fmt lint staticcheck vet ## Runs a fmt, lint, test, staticcheck, and vet.
33+
all: generate test fmt lint ## Runs a fmt, lint, and test.
3634

3735
.PHONY: fmt
3836
fmt: ## Formats Go code including long line wrapping.
@@ -59,19 +57,6 @@ golden-fixtures: ## Refreshes golden test fixtures. Requires OXIDE_HOST, OXIDE_T
5957
@ echo "+ Refreshing golden test fixtures..."
6058
@ $(GO) run ./oxide/testdata/main.go
6159

62-
.PHONY: vet
63-
vet: ## Verifies `go vet` passes.
64-
@ echo "+ Verifying go vet passes..."
65-
@if [[ ! -z "$(shell $(GO) vet ./... | tee /dev/stderr)" ]]; then \
66-
exit 1; \
67-
fi
68-
69-
.PHONY: staticcheck
70-
staticcheck: ## Verifies `staticcheck` passes.
71-
@ echo "+ Verifying staticcheck passes..."
72-
@if [[ ! -z "$(shell go tool -modfile tools/go.mod staticcheck ./... | tee /dev/stderr)" ]]; then \
73-
exit 1; \
74-
fi
7560

7661
.PHONY: tag
7762
tag: ## Create a new git tag to prepare to build a release.

tools/go.mod

Lines changed: 4 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,7 @@ module github.com/oxidecomputer/oxide.go/tools
22

33
go 1.25.0
44

5-
tool (
6-
github.com/golangci/golangci-lint/v2/cmd/golangci-lint
7-
golang.org/x/tools/cmd/goimports
8-
honnef.co/go/tools/cmd/staticcheck
9-
)
10-
11-
require (
12-
github.com/getkin/kin-openapi v0.133.0
13-
github.com/google/go-cmp v0.7.0
14-
github.com/iancoleman/strcase v0.3.0
15-
github.com/pelletier/go-toml v1.9.5
16-
github.com/stretchr/testify v1.11.1
17-
)
5+
tool github.com/golangci/golangci-lint/v2/cmd/golangci-lint
186

197
require (
208
4d63.com/gocheckcompilerdirectives v1.3.0 // indirect
@@ -78,8 +66,6 @@ require (
7866
github.com/fzipp/gocyclo v0.6.0 // indirect
7967
github.com/ghostiam/protogetter v0.3.20 // indirect
8068
github.com/go-critic/go-critic v0.14.3 // indirect
81-
github.com/go-openapi/jsonpointer v0.21.0 // indirect
82-
github.com/go-openapi/swag v0.23.0 // indirect
8369
github.com/go-toolsmith/astcast v1.1.0 // indirect
8470
github.com/go-toolsmith/astcopy v1.1.0 // indirect
8571
github.com/go-toolsmith/astequal v1.2.0 // indirect
@@ -104,6 +90,7 @@ require (
10490
github.com/golangci/revgrep v0.8.0 // indirect
10591
github.com/golangci/swaggoswag v0.0.0-20250504205917-77f2aca3143e // indirect
10692
github.com/golangci/unconvert v0.0.0-20250410112200-a129a6e6413e // indirect
93+
github.com/google/go-cmp v0.7.0 // indirect
10794
github.com/gordonklaus/ineffassign v0.2.0 // indirect
10895
github.com/gostaticanalysis/analysisutil v0.7.1 // indirect
10996
github.com/gostaticanalysis/comment v1.5.0 // indirect
@@ -118,7 +105,6 @@ require (
118105
github.com/jgautheron/goconst v1.8.2 // indirect
119106
github.com/jingyugao/rowserrcheck v1.1.1 // indirect
120107
github.com/jjti/go-spancheck v0.6.5 // indirect
121-
github.com/josharian/intern v1.0.0 // indirect
122108
github.com/julz/importas v0.2.0 // indirect
123109
github.com/karamaru-alpha/copyloopvar v1.2.2 // indirect
124110
github.com/kisielk/errcheck v1.9.0 // indirect
@@ -136,7 +122,6 @@ require (
136122
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
137123
github.com/macabu/inamedparam v0.2.0 // indirect
138124
github.com/magiconair/properties v1.8.6 // indirect
139-
github.com/mailru/easyjson v0.7.7 // indirect
140125
github.com/manuelarte/embeddedstructfieldcheck v0.4.0 // indirect
141126
github.com/manuelarte/funcorder v0.5.0 // indirect
142127
github.com/maratori/testableexamples v1.0.1 // indirect
@@ -149,17 +134,14 @@ require (
149134
github.com/mgechev/revive v1.14.0 // indirect
150135
github.com/mitchellh/go-homedir v1.1.0 // indirect
151136
github.com/mitchellh/mapstructure v1.5.0 // indirect
152-
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
153137
github.com/moricho/tparallel v0.3.2 // indirect
154138
github.com/muesli/termenv v0.16.0 // indirect
155139
github.com/nakabonne/nestif v0.3.1 // indirect
156140
github.com/nishanths/exhaustive v0.12.0 // indirect
157141
github.com/nishanths/predeclared v0.2.2 // indirect
158142
github.com/nunnatsa/ginkgolinter v0.22.0 // indirect
159-
github.com/oasdiff/yaml v0.0.0-20250309154309-f31be36b4037 // indirect
160-
github.com/oasdiff/yaml3 v0.0.0-20250309153720-d2182401db90 // indirect
143+
github.com/pelletier/go-toml v1.9.5 // indirect
161144
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
162-
github.com/perimeterx/marshmallow v1.1.5 // indirect
163145
github.com/pmezard/go-difflib v1.0.0 // indirect
164146
github.com/prometheus/client_golang v1.12.1 // indirect
165147
github.com/prometheus/client_model v0.2.0 // indirect
@@ -193,6 +175,7 @@ require (
193175
github.com/ssgreg/nlreturn/v2 v2.2.1 // indirect
194176
github.com/stbenjam/no-sprintf-host-port v0.3.1 // indirect
195177
github.com/stretchr/objx v0.5.2 // indirect
178+
github.com/stretchr/testify v1.11.1 // indirect
196179
github.com/subosito/gotenv v1.4.1 // indirect
197180
github.com/tetafro/godot v1.5.4 // indirect
198181
github.com/timakin/bodyclose v0.0.0-20241222091800-1db5c5ca4d67 // indirect
@@ -203,7 +186,6 @@ require (
203186
github.com/ultraware/whitespace v0.2.0 // indirect
204187
github.com/uudashr/gocognit v1.2.0 // indirect
205188
github.com/uudashr/iface v1.4.1 // indirect
206-
github.com/woodsbury/decimal128 v1.3.0 // indirect
207189
github.com/xen0n/gosmopolitan v1.3.0 // indirect
208190
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
209191
github.com/yagipy/maintidx v1.0.0 // indirect
@@ -221,7 +203,6 @@ require (
221203
golang.org/x/mod v0.33.0 // indirect
222204
golang.org/x/sync v0.19.0 // indirect
223205
golang.org/x/sys v0.41.0 // indirect
224-
golang.org/x/telemetry v0.0.0-20260209163413-e7419c687ee4 // indirect
225206
golang.org/x/text v0.33.0 // indirect
226207
golang.org/x/tools v0.42.0 // indirect
227208
google.golang.org/protobuf v1.36.8 // indirect

tools/go.sum

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,6 @@ github.com/fsnotify/fsnotify v1.5.4 h1:jRbGcIw6P2Meqdwuo0H1p6JVLbL5DHKAKlYndzMwV
180180
github.com/fsnotify/fsnotify v1.5.4/go.mod h1:OVB6XrOHzAwXMpEM7uPOzcehqUV2UqJxmVXmkdnm1bU=
181181
github.com/fzipp/gocyclo v0.6.0 h1:lsblElZG7d3ALtGMx9fmxeTKZaLLpU8mET09yN4BBLo=
182182
github.com/fzipp/gocyclo v0.6.0/go.mod h1:rXPyn8fnlpa0R2csP/31uerbiVBugk5whMdlyaLkLoA=
183-
github.com/getkin/kin-openapi v0.133.0 h1:pJdmNohVIJ97r4AUFtEXRXwESr8b0bD721u/Tz6k8PQ=
184-
github.com/getkin/kin-openapi v0.133.0/go.mod h1:boAciF6cXk5FhPqe/NQeBTeenbjqU4LhWBf09ILVvWE=
185183
github.com/ghostiam/protogetter v0.3.20 h1:oW7OPFit2FxZOpmMRPP9FffU4uUpfeE/rEdE1f+MzD0=
186184
github.com/ghostiam/protogetter v0.3.20/go.mod h1:FjIu5Yfs6FT391m+Fjp3fbAYJ6rkL/J6ySpZBfnODuI=
187185
github.com/go-critic/go-critic v0.14.3 h1:5R1qH2iFeo4I/RJU8vTezdqs08Egi4u5p6vOESA0pog=
@@ -197,17 +195,11 @@ github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V
197195
github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A=
198196
github.com/go-logr/logr v1.4.3 h1:CjnDlHq8ikf6E492q6eKboGOC0T8CDaOvkHCIg8idEI=
199197
github.com/go-logr/logr v1.4.3/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=
200-
github.com/go-openapi/jsonpointer v0.21.0 h1:YgdVicSA9vH5RiHs9TZW5oyafXZFc6+2Vc1rr/O9oNQ=
201-
github.com/go-openapi/jsonpointer v0.21.0/go.mod h1:IUyH9l/+uyhIYQ/PXVA41Rexl+kOkAPDdXEYns6fzUY=
202-
github.com/go-openapi/swag v0.23.0 h1:vsEVJDUo2hPJ2tu0/Xc+4noaxyEffXNIs3cOULZ+GrE=
203-
github.com/go-openapi/swag v0.23.0/go.mod h1:esZ8ITTYEsH1V2trKHjAN8Ai7xHb8RV+YSZ577vPjgQ=
204198
github.com/go-quicktest/qt v1.101.0 h1:O1K29Txy5P2OK0dGo59b7b0LR6wKfIhttaAhHUyn7eI=
205199
github.com/go-quicktest/qt v1.101.0/go.mod h1:14Bz/f7NwaXPtdYEgzsx46kqSxVwTbzVZsDC26tQJow=
206200
github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=
207201
github.com/go-task/slim-sprig/v3 v3.0.0 h1:sUs3vkvUymDpBKi3qH1YSqBQk9+9D/8M2mN1vB6EwHI=
208202
github.com/go-task/slim-sprig/v3 v3.0.0/go.mod h1:W848ghGpv3Qj3dhTPRyJypKRiqCdHZiAzKg9hl15HA8=
209-
github.com/go-test/deep v1.0.8 h1:TDsG77qcSprGbC6vTN8OuXp5g+J+b5Pcguhf7Zt61VM=
210-
github.com/go-test/deep v1.0.8/go.mod h1:5C2ZWiW0ErCdrYzpqxLbTX7MG14M9iiw8DgHncVwcsE=
211203
github.com/go-toolsmith/astcast v1.1.0 h1:+JN9xZV1A+Re+95pgnMgDboWNVnIMMQXwfBwLRPgSC8=
212204
github.com/go-toolsmith/astcast v1.1.0/go.mod h1:qdcuFWeGGS2xX5bLM/c3U9lewg7+Zu4mr+xPwZIB4ZU=
213205
github.com/go-toolsmith/astcopy v1.1.0 h1:YGwBN0WM+ekI/6SS6+52zLDEf8Yvp3n2seZITCUBt5s=
@@ -348,8 +340,6 @@ github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=
348340
github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=
349341
github.com/hexops/gotextdiff v1.0.3 h1:gitA9+qJrrTCsiCl7+kh75nPqQt1cx4ZkudSTLoUqJM=
350342
github.com/hexops/gotextdiff v1.0.3/go.mod h1:pSWU5MAI3yDq+fZBTazCSJysOMbxWL1BSow5/V2vxeg=
351-
github.com/iancoleman/strcase v0.3.0 h1:nTXanmYxhfFAMjZL34Ov6gkzEsSJZ5DbhxWjvSASxEI=
352-
github.com/iancoleman/strcase v0.3.0/go.mod h1:iwCmte+B7n89clKwxIoIXy/HfoL7AsD47ZCWhYzw7ho=
353343
github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc=
354344
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=
355345
github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=
@@ -359,8 +349,6 @@ github.com/jingyugao/rowserrcheck v1.1.1 h1:zibz55j/MJtLsjP1OF4bSdgXxwL1b+Vn7Tjz
359349
github.com/jingyugao/rowserrcheck v1.1.1/go.mod h1:4yvlZSDb3IyDTUZJUmpZfm2Hwok+Dtp+nu2qOq+er9c=
360350
github.com/jjti/go-spancheck v0.6.5 h1:lmi7pKxa37oKYIMScialXUK6hP3iY5F1gu+mLBPgYB8=
361351
github.com/jjti/go-spancheck v0.6.5/go.mod h1:aEogkeatBrbYsyW6y5TgDfihCulDYciL1B7rG2vSsrU=
362-
github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY=
363-
github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y=
364352
github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4=
365353
github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU=
366354
github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=
@@ -415,8 +403,6 @@ github.com/macabu/inamedparam v0.2.0 h1:VyPYpOc10nkhI2qeNUdh3Zket4fcZjEWe35poddB
415403
github.com/macabu/inamedparam v0.2.0/go.mod h1:+Pee9/YfGe5LJ62pYXqB89lJ+0k5bsR8Wgz/C0Zlq3U=
416404
github.com/magiconair/properties v1.8.6 h1:5ibWZ6iY0NctNGWo87LalDlEZ6R41TqbbDamhfG/Qzo=
417405
github.com/magiconair/properties v1.8.6/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60=
418-
github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0=
419-
github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=
420406
github.com/manuelarte/embeddedstructfieldcheck v0.4.0 h1:3mAIyaGRtjK6EO9E73JlXLtiy7ha80b2ZVGyacxgfww=
421407
github.com/manuelarte/embeddedstructfieldcheck v0.4.0/go.mod h1:z8dFSyXqp+fC6NLDSljRJeNQJJDWnY7RoWFzV3PC6UM=
422408
github.com/manuelarte/funcorder v0.5.0 h1:llMuHXXbg7tD0i/LNw8vGnkDTHFpTnWqKPI85Rknc+8=
@@ -448,8 +434,6 @@ github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJ
448434
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=
449435
github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=
450436
github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=
451-
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 h1:RWengNIwukTxcDr9M+97sNutRR1RKhG96O6jWumTTnw=
452-
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826/go.mod h1:TaXosZuwdSHYgviHp1DAtfrULt5eUgsSMsZf+YrPgl8=
453437
github.com/moricho/tparallel v0.3.2 h1:odr8aZVFA3NZrNybggMkYO3rgPRcqjeQUlBBFVxKHTI=
454438
github.com/moricho/tparallel v0.3.2/go.mod h1:OQ+K3b4Ln3l2TZveGCywybl68glfLEwFGqvnjok8b+U=
455439
github.com/muesli/termenv v0.16.0 h1:S5AlUN9dENB57rsbnkPyfdGuWIlkmzJjbFf0Tf5FWUc=
@@ -464,10 +448,6 @@ github.com/nishanths/predeclared v0.2.2 h1:V2EPdZPliZymNAn79T8RkNApBjMmVKh5XRpLm
464448
github.com/nishanths/predeclared v0.2.2/go.mod h1:RROzoN6TnGQupbC+lqggsOlcgysk3LMK/HI84Mp280c=
465449
github.com/nunnatsa/ginkgolinter v0.22.0 h1:o9g7JN6efdBxAHhejvPkodEjWsOBze9zDnPePsvC/Qg=
466450
github.com/nunnatsa/ginkgolinter v0.22.0/go.mod h1:zIFAk36fhcHQIiYOGXLbrGTXz7cvpufhRYem6ToCVnY=
467-
github.com/oasdiff/yaml v0.0.0-20250309154309-f31be36b4037 h1:G7ERwszslrBzRxj//JalHPu/3yz+De2J+4aLtSRlHiY=
468-
github.com/oasdiff/yaml v0.0.0-20250309154309-f31be36b4037/go.mod h1:2bpvgLBZEtENV5scfDFEtB/5+1M4hkQhDQrccEJ/qGw=
469-
github.com/oasdiff/yaml3 v0.0.0-20250309153720-d2182401db90 h1:bQx3WeLcUWy+RletIKwUIt4x3t8n2SxavmoclizMb8c=
470-
github.com/oasdiff/yaml3 v0.0.0-20250309153720-d2182401db90/go.mod h1:y5+oSEHCPT/DGrS++Wc/479ERge0zTFxaF8PbGKcg2o=
471451
github.com/onsi/ginkgo/v2 v2.27.2 h1:LzwLj0b89qtIy6SSASkzlNvX6WktqurSHwkk2ipF/Ns=
472452
github.com/onsi/ginkgo/v2 v2.27.2/go.mod h1:ArE1D/XhNXBXCBkKOLkbsb2c81dQHCRcF5zwn/ykDRo=
473453
github.com/onsi/gomega v1.38.2 h1:eZCjf2xjZAqe+LeWvKb5weQ+NcPwX84kqJ0cZNxok2A=
@@ -483,8 +463,6 @@ github.com/pelletier/go-toml v1.9.5 h1:4yBQzkHv+7BHq2PQUZF3Mx0IYxG7LsP222s7Agd3v
483463
github.com/pelletier/go-toml v1.9.5/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c=
484464
github.com/pelletier/go-toml/v2 v2.2.4 h1:mye9XuhQ6gvn5h28+VilKrrPoQVanw5PMw/TB0t5Ec4=
485465
github.com/pelletier/go-toml/v2 v2.2.4/go.mod h1:2gIqNv+qfxSVS7cM2xJQKtLSTLUE9V8t9Stt+h56mCY=
486-
github.com/perimeterx/marshmallow v1.1.5 h1:a2LALqQ1BlHM8PZblsDdidgv1mWi1DgC2UmX50IvK2s=
487-
github.com/perimeterx/marshmallow v1.1.5/go.mod h1:dsXbUu8CRzfYP5a87xpp0xq9S3u0Vchtcl8we9tYaXw=
488466
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
489467
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
490468
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
@@ -603,8 +581,6 @@ github.com/tomarrell/wrapcheck/v2 v2.12.0 h1:H/qQ1aNWz/eeIhxKAFvkfIA+N7YDvq6TWVF
603581
github.com/tomarrell/wrapcheck/v2 v2.12.0/go.mod h1:AQhQuZd0p7b6rfW+vUwHm5OMCGgp63moQ9Qr/0BpIWo=
604582
github.com/tommy-muehle/go-mnd/v2 v2.5.1 h1:NowYhSdyE/1zwK9QCLeRb6USWdoif80Ie+v+yU8u1Zw=
605583
github.com/tommy-muehle/go-mnd/v2 v2.5.1/go.mod h1:WsUAkMJMYww6l/ufffCD3m+P7LEvr8TnZn9lwVDlgzw=
606-
github.com/ugorji/go/codec v1.2.7 h1:YPXUKf7fYbp/y8xloBqZOw2qaVggbfwMlI8WM3wZUJ0=
607-
github.com/ugorji/go/codec v1.2.7/go.mod h1:WGN1fab3R1fzQlVQTkfxVtIBhWDRqOviHU95kRgeqEY=
608584
github.com/ultraware/funlen v0.2.0 h1:gCHmCn+d2/1SemTdYMiKLAHFYxTYz7z9VIDRaTGyLkI=
609585
github.com/ultraware/funlen v0.2.0/go.mod h1:ZE0q4TsJ8T1SQcjmkhN/w+MceuatI6pBFSxxyteHIJA=
610586
github.com/ultraware/whitespace v0.2.0 h1:TYowo2m9Nfj1baEQBjuHzvMRbp19i+RCcRYrSWoFa+g=
@@ -613,8 +589,6 @@ github.com/uudashr/gocognit v1.2.0 h1:3BU9aMr1xbhPlvJLSydKwdLN3tEUUrzPSSM8S4hDYR
613589
github.com/uudashr/gocognit v1.2.0/go.mod h1:k/DdKPI6XBZO1q7HgoV2juESI2/Ofj9AcHPZhBBdrTU=
614590
github.com/uudashr/iface v1.4.1 h1:J16Xl1wyNX9ofhpHmQ9h9gk5rnv2A6lX/2+APLTo0zU=
615591
github.com/uudashr/iface v1.4.1/go.mod h1:pbeBPlbuU2qkNDn0mmfrxP2X+wjPMIQAy+r1MBXSXtg=
616-
github.com/woodsbury/decimal128 v1.3.0 h1:8pffMNWIlC0O5vbyHWFZAt5yWvWcrHA+3ovIIjVWss0=
617-
github.com/woodsbury/decimal128 v1.3.0/go.mod h1:C5UTmyTjW3JftjUFzOVhC20BEQa2a4ZKOB5I6Zjb+ds=
618592
github.com/xen0n/gosmopolitan v1.3.0 h1:zAZI1zefvo7gcpbCOrPSHJZJYA9ZgLfJqtKzZ5pHqQM=
619593
github.com/xen0n/gosmopolitan v1.3.0/go.mod h1:rckfr5T6o4lBtM1ga7mLGKZmLxswUoH1zxHgNXOsEt4=
620594
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e h1:JVG44RsyaB9T2KIHavMF/ppJZNG9ZpyihvCd0w101no=
@@ -826,8 +800,6 @@ golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
826800
golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
827801
golang.org/x/sys v0.41.0 h1:Ivj+2Cp/ylzLiEU89QhWblYnOE9zerudt9Ftecq2C6k=
828802
golang.org/x/sys v0.41.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
829-
golang.org/x/telemetry v0.0.0-20260209163413-e7419c687ee4 h1:bTLqdHv7xrGlFbvf5/TXNxy/iUwwdkjhqQTJDjW7aj0=
830-
golang.org/x/telemetry v0.0.0-20260209163413-e7419c687ee4/go.mod h1:g5NllXBEermZrmR51cJDQxmJUHUOfRAaNyWBM+R+548=
831803
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
832804
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
833805
golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k=

0 commit comments

Comments
 (0)