this repo has no description
at master 17 lines 624 B view raw
1// This module exists just so that we can track extra tooling dependencies 2// to be used via `go tool` without polluting the main go.mod file. 3// TODO(mvdan): once we stabilize on this model, have CI ensure this module is tidy too. 4module test/tools 5 6go 1.24.0 7 8tool honnef.co/go/tools/cmd/staticcheck 9 10require ( 11 github.com/BurntSushi/toml v1.4.1-0.20240526193622-a339e1f7089c // indirect 12 golang.org/x/exp/typeparams v0.0.0-20231108232855-2478ac86f678 // indirect 13 golang.org/x/mod v0.23.0 // indirect 14 golang.org/x/sync v0.11.0 // indirect 15 golang.org/x/tools v0.30.0 // indirect 16 honnef.co/go/tools v0.6.1 // indirect 17)