aboutsummaryrefslogtreecommitdiff
path: root/Gopkg.toml
AgeCommit message (Collapse)Author
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-11dep: require tools to be vendoredJoseph Richey
This change ot Gopkg.toml will make it easier to build the linting and formatting tools. Vendoring their source also makes sure that updates to these tools do not break the build.
2018-02-11dep: add dependancies to Gopkg.tomlJoseph Richey
fscrypt directly depends on 5 repositories (8 packages). This change adds those dependancies to Gopkg.toml, so that they can be properly versioned. Note that the golang.org/x repositories do not use semver.
2018-02-08dep: Setup Gopkg.tomlJoseph Richey
This change transitions to dep, sets up Gopkg.toml, and purnes the maximum allowable number of files.