script: use tools.mod for bootstrap (#175)

Replaces gobin with the preferred tools.mod solution for pinning tool dependencies.

Updates #166
This commit is contained in:
Michael McLoughlin
2021-04-10 21:10:42 -07:00
committed by GitHub
parent 3f5da8f6e4
commit e5c9b4e5a6
3 changed files with 72 additions and 13 deletions

11
script/tools.mod Normal file
View File

@@ -0,0 +1,11 @@
module github.com/mmcloughlin/avo
go 1.14
require (
github.com/campoy/embedmd v1.0.0 // indirect
github.com/dlespiau/covertool v0.0.0-20180314162135-b0c4c6d0583a // indirect
github.com/klauspost/asmfmt v1.2.1 // indirect
github.com/urfave/cli v1.22.5 // indirect
mvdan.cc/gofumpt v0.0.0-20200412215918-a91da47f375c // indirect
)