diff options
author | Michael Aldridge <aldridge.mac@gmail.com> | 2021-01-10 00:03:17 -0800 |
---|---|---|
committer | raul-te <46945030+raul-te@users.noreply.github.com> | 2021-01-11 12:09:01 -0800 |
commit | 54548c1e857ef55bd37cf0b4bfd66f560bb41997 (patch) | |
tree | 101cf28f854b43c1ad6ab6a42f00c99f876ba880 /README.md | |
parent | b709a777f56511e233cd4652e73ec46c7641652b (diff) |
Use Go Modules
Go has made it clear that the official way to manage modules is to use
the built in modules system, and `dep` is painfully slow. This commit
replaces the `dep` control files with the files needed for go modules
and has synced the vendor directory.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -230,8 +230,3 @@ guidelines: a bug or, even better, contribute with a pull request. * We have a bunch of integration tests that can be run by executing `make test`. Ensure that all test pass before submitting your pull request. -* We are using [dep](https://golang.github.io/dep/) for managing the - dependencies of this project. If your contribution adds a new dependency (not - recommended, but sometimes there isn't other way), please update dep files and - vendor directory - [accordingly](https://golang.github.io/dep/docs/daily-dep.html#adding-a-new-dependency). |