aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com
Commit message (Collapse)AuthorAgeFilesLines
* go.mod: add go-fuzz-buildDmitry Vyukov2020-07-0412-0/+2466
| | | | | | | | Otherwise go-fuzz-build now fails with: + go-fuzz-build -libfuzzer -func FuzzDeserialize -o fuzzer.a ./prog/test -: cannot find package "." in: /syzkaller/gopath/src/github.com/google/syzkaller/vendor/github.com/dvyukov/go-fuzz/go-fuzz-dep
* go.mod: vendor golangci-lintDmitry Vyukov2020-07-04993-0/+165823
|
* go.mod: upgrade some dependenciesDmitry Vyukov2020-07-0478-24298/+4967
| | | | | | | Since we started using modules, it's a good time to update some deps. Update to latest official versions packages that have newer versions. Update #1247
* go.mod: switch to modules for dependency managementDmitry Vyukov2020-07-0440-2165/+206
| | | | | | | | | | | | | 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
* vendor: update vendored filesDmitry Vyukov2020-01-2978-861/+10145
| | | | | | Required to switch dashboard/app to go1.11. Update #1461
* vendor/github.com/google/go-cmp: update to HEADDmitry Vyukov2019-03-1732-986/+2504
| | | | | To pick up fix for: https://github.com/google/go-cmp/issues/103
* vendor: add github.com/ianlancetaylor/demangleDmitry Vyukov2018-06-2836-3974/+14249
| | | | | | Add the new package required by pkg/report/fuchsia.go. Also update everything else because there does not seem to be a way to add a package without a wholesale update.
* vendor: add github.com/google/go-cmp/cmpDmitry Vyukov2018-06-1825-0/+3832
| | | | This package simplifies diffing complex objects in tests.
* vendor: update all packagesDmitry Vyukov2017-08-0812-4/+1046
| | | | | | google.golang.org/api/compute/v0.beta again changed public interfaces which causes breakages in other build environments. Update everything to HEAD.
* vendor: switch from dep to godepDmitry Vyukov2017-06-1389-26695/+1
| | | | | | | dep tool vendored too much code (100MB) including tests and unused packages. godep vendored significantly less (12MB) without tests and unused packages. The main advantage is that pre-Go1.9 toolchain does not run tests of all vendor packages now.
* vendor: vendor dependenciesDmitry Vyukov2017-06-13119-0/+38100
All dependencies are vendored with: go get github.com/golang/dep dep init If necessary, can be updated with: dep ensure -update Fixes #215