aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps
Commit message (Collapse)AuthorAgeFilesLines
* go.mod: switch to modules for dependency managementDmitry Vyukov2020-07-042-927/+0
| | | | | | | | | | | | | 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: bump golang.org/x/sys/unixTobias Klauser2020-06-291-1/+5
| | | | Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
* vendor: update vendored filesDmitry Vyukov2020-01-291-149/+625
| | | | | | Required to switch dashboard/app to go1.11. Update #1461
* vendor/github.com/google/go-cmp: update to HEADDmitry Vyukov2019-03-171-7/+14
| | | | | To pick up fix for: https://github.com/google/go-cmp/issues/103
* vendor: add github.com/ianlancetaylor/demangleDmitry Vyukov2018-06-281-107/+177
| | | | | | 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-181-0/+28
| | | | This package simplifies diffing complex objects in tests.
* vendor: update all packagesDmitry Vyukov2017-08-081-111/+118
| | | | | | google.golang.org/api/compute/v0.beta again changed public interfaces which causes breakages in other build environments. Update everything to HEAD.
* vendor: add google.golang.org/appengine/mailDmitry Vyukov2017-06-301-0/+10
| | | | For sending emails from appengine apps.
* vendor: vendor appengine/aetest packageDmitry Vyukov2017-06-231-0/+5
|
* vendor: vendor appengine dependenciesDmitry Vyukov2017-06-221-0/+60
|
* vendor: switch from dep to godepDmitry Vyukov2017-06-132-0/+260
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.