From a3434e41bd482fc1b35703f66c24c9d1ec3b0be2 Mon Sep 17 00:00:00 2001 From: Joseph Richey Date: Fri, 25 Oct 2019 17:26:49 -0700 Subject: Manage tool versioning with Go modules (#161) See: https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module The tool code is never actually built, but the versions are still lock in `go.mod` and `go.sum`. We can also simplify the Makefile. --- go.mod | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index 8858374..8d2ff2f 100644 --- a/go.mod +++ b/go.mod @@ -3,11 +3,14 @@ module github.com/google/fscrypt go 1.11 require ( + github.com/client9/misspell v0.3.4 github.com/golang/protobuf v1.2.0 github.com/pkg/errors v0.8.0 github.com/urfave/cli v1.20.0 - golang.org/x/crypto v0.0.0-20180820150726-614d502a4dac - golang.org/x/net v0.0.0-20180826012351-8a410e7b638d // indirect - golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f // indirect - golang.org/x/sys v0.0.0-20180828065106-d99a578cf41b + github.com/wadey/gocovmerge v0.0.0-20160331181800-b5bfa59ec0ad + golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529 + golang.org/x/lint v0.0.0-20190930215403-16217165b5de + golang.org/x/sys v0.0.0-20190412213103-97732733099d + golang.org/x/tools v0.0.0-20191025023517-2077df36852e + honnef.co/go/tools v0.0.1-2019.2.3 ) -- cgit v1.2.3