diff options
| author | Joe Richey joerichey@google.com <joerichey@google.com> | 2018-08-30 01:26:47 -0700 |
|---|---|---|
| committer | Joe Richey joerichey@google.com <joerichey@google.com> | 2018-08-30 01:26:47 -0700 |
| commit | 483a1e717f5c1d0a68061d596118a93b2d498d53 (patch) | |
| tree | 857992c70d346f3a942359a522148934af0c9679 /go.mod | |
| parent | 1e1b67dae6c3ae3b5acb5ce377b01b286c3e676b (diff) | |
Transition from dep to golang's module system
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,12 @@ +module github.com/google/fscrypt + +// Source dependancies +require ( + github.com/golang/protobuf v1.0.0 + github.com/pkg/errors v0.8.0 + github.com/urfave/cli v1.20.0 + golang.org/x/crypto v0.0.0-20180208170933-5119cf507ed5 + 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-20180202135801-37707fdb30a5 +) |