aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorJoseph Richey <joerichey@google.com>2019-10-25 17:26:49 -0700
committerGitHub <noreply@github.com>2019-10-25 17:26:49 -0700
commita3434e41bd482fc1b35703f66c24c9d1ec3b0be2 (patch)
tree2e41a405c47328760c2787feb75065fa2d354540 /go.mod
parentb24e4ccd245861f7537f17c3e01be2cbefb1b29e (diff)
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.
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod11
1 files changed, 7 insertions, 4 deletions
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
)