Go dependency management tool experiment (deprecated)
Перейти к файлу
sam boyer 64d7f61a83 docs: new release announcement, CSS fixes 2018-01-23 16:37:25 -05:00
.github Move gps package out of internal 2017-11-10 17:02:30 -08:00
cmd/dep dep: Wording tweaks on ineffectuals error message 2018-01-16 20:19:28 -08:00
docs docs: new release announcement, CSS fixes 2018-01-23 16:37:25 -05:00
gps misc: Clean up CHANGELOG, add TODO from #1509 2018-01-15 21:38:49 -08:00
hack Added Support for freebsd and 386 arch 2017-12-22 00:44:16 +05:30
internal make importers error tolerant (#1474) 2018-01-11 12:02:00 -06:00
testdata removed first empty line on the example file 2017-11-21 14:35:22 -02:00
vendor upgrade github.com/jmank88/nuts to 0.3.0 2018-01-08 20:31:52 -06:00
website docs: new release announcement, CSS fixes 2018-01-23 16:37:25 -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 Update CHANGELOG 2018-01-16 01:28:06 -08: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 dep: Use new line-per-item behaviors from TOML lib 2017-12-18 09:18:13 -05:00
manifest_test.go Fixed tests from different casing 2017-11-22 10:41:20 -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 removed first empty line on the example file 2017-11-21 14:35:22 -02:00
txn_writer_test.go testing: de-globalize discard loggers 2017-09-14 14:57:02 -05: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.