Go dependency management tool experiment (deprecated)
Перейти к файлу
sam boyer 69763c4289 dep: Fix erroneous test use of non-project root 2018-01-24 08:51:16 -05:00
.github Move gps package out of internal 2017-11-10 17:02:30 -08:00
cmd/dep dep: Fix broken test from prune init 2018-01-23 23:22:34 -05:00
docs docs: Fix links in announce blog && intro 2018-01-23 23:22:53 -05:00
gps ensure: Absorb dep prune into dep ensure 2018-01-23 20:05:25 -05:00
hack dep: Prune vendor using new pruning powers 2018-01-23 23:46:57 -05:00
internal Merge pull request #1544 from carolynvs/fix-update-all-golden-files 2018-01-22 22:03:37 +05:30
testdata dep: Fix erroneous test use of non-project root 2018-01-24 08:51:16 -05:00
vendor dep: Prune vendor using new pruning powers 2018-01-23 23:46:57 -05:00
website announce: Update announcement with v0.4.1 ref 2018-01-24 08:23:56 -05:00
.codeclimate.yml CI: trying to disable bad codeclimate checks 2018-01-03 09:56:08 -05:00
.gitattributes Prevent problems comparing golden files on Windows 2017-02-20 23:45:11 -05:00
.gitignore Ignore output files from a test run 2017-06-08 17:54:30 -05:00
.travis.yml Merge pull request #1472 from dungeonmaster18/add-build 2017-12-21 14:29:43 -05:00
AUTHORS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
CHANGELOG.md Fix ignored per-project prune options (#1561) 2018-01-24 08:14:50 +01:00
CODE_OF_CONDUCT.md (To Squash) Moving CODE_OF_CONDUCT.md ../ 2017-04-25 09:11:55 -06:00
CONTRIBUTING.md Fix newcomer label links 2018-01-01 00:47:21 -05:00
CONTRIBUTORS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
Gopkg.lock upgrade github.com/jmank88/nuts to 0.3.0 2018-01-08 20:31:52 -06:00
Gopkg.toml upgrade github.com/jmank88/nuts to 0.3.0 2018-01-08 20:31:52 -06:00
LICENSE Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
MAINTAINERS.md add jmank88 to MAINTAINERS and CODEOWNERS for gps caching 2017-07-21 06:38:15 -05:00
PATENTS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
README.md docs: Add installation.md, lots of tweaks 2018-01-23 09:54:52 -05:00
analyzer.go Move gps package out of internal 2017-11-10 17:02:30 -08:00
analyzer_notwindows_test.go Add Windows specific function for making a file unreadable during tests. 2017-05-02 02:34:40 -04:00
analyzer_test.go dep: add prune options to manifests 2017-11-17 10:25:07 +03:00
analyzer_windows_test.go Add Windows specific function for making a file unreadable during tests. 2017-05-02 02:34:40 -04:00
appveyor.yml Move gps package out of internal 2017-11-10 17:02:30 -08:00
context.go do not create cachedir recursively 2017-12-08 09:02:18 +05:30
context_test.go do not create cachedir recursively 2017-12-08 09:02:18 +05:30
doc.go improve godoc; replace Loggers with embeded fields; refactor Ctx api 2017-06-07 08:46:44 -05:00
lock.go dep: Use new line-per-item behaviors from TOML lib 2017-12-18 09:18:13 -05:00
lock_test.go Move gps package out of internal 2017-11-10 17:02:30 -08:00
manifest.go Fix ignored per-project prune options (#1561) 2018-01-24 08:14:50 +01:00
manifest_test.go dep: Fix erroneous test use of non-project root 2018-01-24 08:51:16 -05:00
project.go dep: Emit ptree from GetDirectDependencyNames() 2018-01-16 08:40:09 -08:00
project_test.go Move gps package out of internal 2017-11-10 17:02:30 -08:00
test_project_context_test.go Move gps package out of internal 2017-11-10 17:02:30 -08:00
txn_writer.go Add default prune settings for init cmd 2017-12-18 18:37:44 -05:00
txn_writer_test.go resolve nits 2017-12-07 23:49:59 +03:00

README.md

Build Status Windows Build Status

Dep

dep is a prototype dependency management tool for Go. It requires Go 1.8 or newer to compile. dep is safe for production use.

dep is the official experiment, but not yet the official tool. Check out the Roadmap for more on what this means!

For guides and reference materials about dep, see the documentation.

Installation

It is strongly recommended that you use a released version. Release binaries are available on the releases page.

On MacOS you can install or upgrade to the latest released version with Homebrew:

$ brew install dep
$ brew upgrade dep

If you're interested in hacking on dep, you can install via go get:

go get -u github.com/golang/dep/cmd/dep

Feedback

Feedback is greatly appreciated. At this stage, the maintainers are most interested in feedback centered on the user experience (UX) of the tool. Do you have workflows that the tool supports well, or doesn't support at all? Do any of the commands have surprising effects, output, or results? If not, please file an issue, describing what you did or wanted to do, what you expected to happen, and what actually happened.

Contributing

Contributions are greatly appreciated. The maintainers actively manage the issues list, and try to highlight issues suitable for newcomers. The project follows the typical GitHub pull request model. See CONTRIBUTING.md for more details. Before starting any work, please either comment on an existing issue, or file a new one.