diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2020-07-04 10:38:29 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-07-04 15:05:30 +0200 |
| commit | dcff124efb2ea4a834b74ac0974aa2f2fd000b40 (patch) | |
| tree | 8d49a1e0849baa283d09c7227ec9d2311a34258a /go.mod | |
| parent | 4f739670f77d37168a44be2139f4005b748a825d (diff) | |
go.mod: switch to modules for dependency management
Godep is long deprecated and modules is the future.
Updating dependencies with godep is painful and non-transparent.
This will hopefully help to create custom golangci-lint linters.
The change was created with:
go mod init
rm -rf vendor
go mod vendor
Fixes #1247
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -0,0 +1,28 @@ +module github.com/google/syzkaller + +go 1.14 + +require ( + cloud.google.com/go v0.52.1-0.20200128230113-ad7cd32b39df // indirect + cloud.google.com/go/storage v1.0.0 + github.com/BurntSushi/toml v0.3.1 // indirect + github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect + github.com/golang/protobuf v1.3.3 // indirect + github.com/google/go-cmp v0.4.0 + github.com/googleapis/gax-go v1.0.4-0.20191018151119-b443e5a67ec8 // indirect + github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6 + github.com/jstemmer/go-junit-report v0.9.2-0.20191008195320-984a47ca6b0a // indirect + go.opencensus.io v0.22.3-0.20200113180412-d851005f548f // indirect + golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a // indirect + golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f // indirect + golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa + golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d + golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae + golang.org/x/text v0.3.3-0.20191230102452-929e72ca90de // indirect + golang.org/x/tools v0.0.0-20200128002243-345141a36859 // indirect + google.golang.org/api v0.15.1-0.20200128000756-b6b5836d7694 + google.golang.org/appengine v1.6.6-0.20191219230319-b6ce0843b556 + google.golang.org/genproto v0.0.0-20200128133413-58ce757ed39b // indirect + google.golang.org/grpc v1.28.0-pre.0.20200128222427-f97821dd2fec // indirect + honnef.co/go/tools v0.0.1-2019.2.3 // indirect +) |
