aboutsummaryrefslogtreecommitdiff
path: root/Gopkg.lock
AgeCommit message (Collapse)Author
2018-08-30Transition from dep to golang's module systemJoe Richey joerichey@google.com
2018-02-11golint: Use fork that respects vendor directoryJoseph Richey
Ideally, we would just use "golint ./..." to check all our our source files for lint error. However, this does not work because it will include all packages in the vendor directory. The pull request at: https://github.com/golang/lint/pull/325 fixes this issue, so we will use it until the PR has been merged.
2018-02-11vendor: include source for toolsJoseph Richey
This change vendors the source for all our build, formatting, and linting tools. Generated by running "dep ensure".
2018-02-11vendor: update vendored dependanciesJoseph Richey
This change updates dependancies to be consistent with Gopkg.toml. This change was generated by running "dep ensure".
2018-02-09dep: Run dep ensureJoseph Richey
2018-02-08dep: Setup Gopkg.tomlJoseph Richey
This change transitions to dep, sets up Gopkg.toml, and purnes the maximum allowable number of files.