Skip to content

Commit

Permalink
add go tool for go 1.24
Browse files Browse the repository at this point in the history
Signed-off-by: Fedor Partanskiy <[email protected]>
  • Loading branch information
pfi79 committed Feb 12, 2025
1 parent 39f4839 commit 5560bb8
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 42 deletions.
44 changes: 29 additions & 15 deletions tools/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,32 @@ module tools

go 1.24.0

require (
github.com/AlekSi/gocov-xml v0.0.0-20190121064608-3a14fb1c4737
github.com/axw/gocov v1.0.0
github.com/client9/misspell v0.3.4
github.com/go-swagger/go-swagger v0.25.0
github.com/hyperledger/fabric-lib-go v1.1.1
github.com/maxbrunsfeld/counterfeiter/v6 v6.8.1
github.com/onsi/ginkgo/v2 v2.20.2
github.com/vektra/mockery/v2 v2.45.0
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616
golang.org/x/tools v0.30.0
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.5.1
google.golang.org/protobuf v1.34.2
honnef.co/go/tools v0.6.0
mvdan.cc/gofumpt v0.1.0
tool (
github.com/AlekSi/gocov-xml
github.com/axw/gocov/gocov
github.com/client9/misspell/cmd/misspell
github.com/go-swagger/go-swagger/cmd/swagger
github.com/hyperledger/fabric-lib-go/common/metrics/cmd/gendoc
github.com/maxbrunsfeld/counterfeiter/v6
github.com/onsi/ginkgo/v2/ginkgo
github.com/vektra/mockery/v2
golang.org/x/lint/golint
golang.org/x/tools/cmd/goimports
google.golang.org/grpc/cmd/protoc-gen-go-grpc
google.golang.org/protobuf/cmd/protoc-gen-go
honnef.co/go/tools/cmd/staticcheck
mvdan.cc/gofumpt
)

require (
github.com/AlekSi/gocov-xml v0.0.0-20190121064608-3a14fb1c4737 // indirect
github.com/BurntSushi/toml v1.4.1-0.20240526193622-a339e1f7089c // indirect
github.com/PuerkitoBio/purell v1.1.1 // indirect
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
github.com/asaskevich/govalidator v0.0.0-20200428143746-21a406dcc535 // indirect
github.com/axw/gocov v1.0.0 // indirect
github.com/chigopher/pathlib v0.19.1 // indirect
github.com/client9/misspell v0.3.4 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/go-openapi/analysis v0.19.10 // indirect
github.com/go-openapi/errors v0.19.6 // indirect
Expand All @@ -38,13 +41,15 @@ require (
github.com/go-openapi/swag v0.19.9 // indirect
github.com/go-openapi/validate v0.19.10 // indirect
github.com/go-stack/stack v1.8.0 // indirect
github.com/go-swagger/go-swagger v0.25.0 // indirect
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/pprof v0.0.0-20240827171923-fa2c70bbbfe5 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gorilla/handlers v1.4.2 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/huandu/xstrings v1.4.0 // indirect
github.com/hyperledger/fabric-lib-go v1.1.1 // indirect
github.com/iancoleman/strcase v0.2.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jessevdk/go-flags v1.4.0 // indirect
Expand All @@ -56,8 +61,10 @@ require (
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/maxbrunsfeld/counterfeiter/v6 v6.8.1 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/onsi/ginkgo/v2 v2.20.2 // indirect
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
Expand All @@ -70,15 +77,22 @@ require (
github.com/spf13/viper v1.15.0 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
github.com/toqueteos/webbrowser v1.2.0 // indirect
github.com/vektra/mockery/v2 v2.45.0 // indirect
go.mongodb.org/mongo-driver v1.5.1 // indirect
golang.org/x/exp/typeparams v0.0.0-20231108232855-2478ac86f678 // indirect
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
golang.org/x/mod v0.23.0 // indirect
golang.org/x/net v0.35.0 // indirect
golang.org/x/sync v0.11.0 // indirect
golang.org/x/sys v0.30.0 // indirect
golang.org/x/term v0.29.0 // indirect
golang.org/x/text v0.22.0 // indirect
golang.org/x/tools v0.30.0 // indirect
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.5.1 // indirect
google.golang.org/protobuf v1.34.2 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
honnef.co/go/tools v0.6.0 // indirect
mvdan.cc/gofumpt v0.1.0 // indirect
)
27 changes: 0 additions & 27 deletions tools/tools.go

This file was deleted.

0 comments on commit 5560bb8

Please sign in to comment.