Commit Graph

5 Commits

Author SHA1 Message Date
Dmitry Vyukov
9573094ce2 go.mod: upgrade some dependencies
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
2020-07-04 15:05:30 +02:00
Dmitry Vyukov
dcff124efb 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
2020-07-04 15:05:30 +02:00
Dmitry Vyukov
4705549800 vendor: update vendored files
Required to switch dashboard/app to go1.11.

Update #1461
2020-01-29 16:01:06 +01:00
Dmitry Vyukov
b41e96b421 vendor: switch from dep to godep
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.
2017-06-13 20:23:21 +02:00
Dmitry Vyukov
612b82714b vendor: vendor dependencies
All dependencies are vendored with:
go get github.com/golang/dep
dep init

If necessary, can be updated with:
dep ensure -update

Fixes #215
2017-06-13 19:26:47 +02:00