Skip to content

Commit 89f364f

Browse files
authored
go.mod: add tool section in module file (#32598)
This removes the tools.go workaround in favor of the official tool management infrastructure, which was added in Go 1.24.
1 parent 6924eea commit 89f364f

File tree

2 files changed

+7
-28
lines changed

2 files changed

+7
-28
lines changed

build/tools/tools.go

Lines changed: 0 additions & 27 deletions
This file was deleted.

go.mod

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ require (
2626
github.com/ethereum/go-verkle v0.2.2
2727
github.com/fatih/color v1.16.0
2828
github.com/ferranbt/fastssz v0.1.4
29-
github.com/fjl/gencodec v0.1.0
3029
github.com/fsnotify/fsnotify v1.6.0
3130
github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff
3231
github.com/gofrs/flock v0.12.1
@@ -103,6 +102,7 @@ require (
103102
github.com/deepmap/oapi-codegen v1.6.0 // indirect
104103
github.com/dlclark/regexp2 v1.7.0 // indirect
105104
github.com/emicklei/dot v1.6.2 // indirect
105+
github.com/fjl/gencodec v0.1.0 // indirect
106106
github.com/garslo/gogen v0.0.0-20170306192744-1d203ffc1f61 // indirect
107107
github.com/getsentry/sentry-go v0.27.0 // indirect
108108
github.com/go-ole/go-ole v1.3.0 // indirect
@@ -146,3 +146,9 @@ require (
146146
golang.org/x/net v0.38.0 // indirect
147147
gopkg.in/yaml.v2 v2.4.0 // indirect
148148
)
149+
150+
tool (
151+
github.com/fjl/gencodec
152+
golang.org/x/tools/cmd/stringer
153+
google.golang.org/protobuf/cmd/protoc-gen-go
154+
)

0 commit comments

Comments
 (0)