From 3d01d5e83f83a61977ee14105f9f9747e69224e0 Mon Sep 17 00:00:00 2001 From: Matt Joseph Date: Mon, 29 Apr 2019 05:17:34 -0400 Subject: [PATCH] Go modules are the official package management going forward (#2492) --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a95e16b3..d09a3754 100644 --- a/README.md +++ b/README.md @@ -1212,7 +1212,11 @@ See [go-hardware](https://github.com/rakyll/go-hardware) for a comprehensive lis ## Package Management -*Official tooling for package management* +*Official tooling for dependency and package management* + +* [go modules](https://golang.org/cmd/go/#hdr-Modules__module_versions__and_more) - Modules are the unit of source code interchange and versioning. The go command has direct support for working with modules, including recording and resolving dependencies on other modules. + +*Official experimental tooling for package management* * [dep](https://github.com/golang/dep) - Go dependency tool. * [vgo](https://go.googlesource.com/vgo/) - Versioned Go.