aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/golang/protobuf/protoc-gen-go/plugin/plugin.pb.go
Commit message (Collapse)AuthorAgeFilesLines
* go.mod: upgrade some dependenciesDmitry Vyukov2020-07-041-369/+0
| | | | | | | 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
* vendor: update vendored filesDmitry Vyukov2020-01-291-0/+369
| | | | | | Required to switch dashboard/app to go1.11. Update #1461
* vendor: switch from dep to godepDmitry Vyukov2017-06-131-293/+0
| | | | | | | 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-131-0/+293
All dependencies are vendored with: go get github.com/golang/dep dep init If necessary, can be updated with: dep ensure -update Fixes #215