Go dependency management tool experiment (deprecated)
Перейти к файлу
sam boyer 354108c3b0 dep: Make SafeWriter use status map for OnChanged
If vendor was empty, nonexistent, or just missing a few targeted items,
the SafeWriter would miss them.
2018-07-20 17:21:18 -07:00
.github docs: hash-inputs is gone, nix it from PR template 2018-07-11 02:58:46 -04:00
cmd/dep dep: Make SafeWriter use status map for OnChanged 2018-07-20 17:21:18 -07:00
docs Merge pull request #1889 from tuxlife/patch-1 2018-07-11 01:17:27 -04:00
gps dep: Introduce dep check subcommand 2018-07-12 00:51:18 -04:00
hack Merge branch 'pr1867' of https://github.com/ceseo/dep 2018-07-11 01:27:49 -04:00
internal test: Don't add -v to dep check tests 2018-07-20 15:50:36 -07:00
testdata dep: Update scads of tests 2018-07-03 19:14:30 -04:00
vendor dep: Update go-toml to v1.2.0 2018-07-11 02:52:21 -04:00
website dep: Add DEPPROJECTROOT CHANGELOG entry and docs 2018-06-04 23:33:20 -04: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 Fixes and cleanup to build script 2018-01-27 10:23:49 -08:00
.travis.yml Handle CGO_ENABLED automatically 2018-05-01 22:23:26 -07:00
AUTHORS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
CHANGELOG.md Update CHANGELOG 2018-07-12 00:52:25 -04:00
CODE_OF_CONDUCT.md (To Squash) Moving CODE_OF_CONDUCT.md ../ 2017-04-25 09:11:55 -06:00
CONTRIBUTING.md Update CONTRIBUTING.md 2018-05-05 00:53:27 -07:00
CONTRIBUTORS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
Gopkg.lock dep: Don't try to look up known-removed projects 2018-07-11 09:28:34 -04:00
Gopkg.toml Bump github.com/Masterminds/semver 2018-04-02 21:36:34 -05:00
LICENSE Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
MAINTAINERS.md update CODEOWNERS and MAINTAINERS with more @jmank88 2018-02-07 08:21:32 -06:00
Makefile Merge pull request #1917 from sdboyer/licenseok-test 2018-07-02 21:27:49 -04:00
PATENTS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
README.md change CI to 1.10.x; update docs 2018-02-21 17:13:45 -06: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 trying to fix appveyor 2018-02-24 21:01:20 -06:00
context.go dep: Update scads of tests 2018-07-03 19:14:30 -04:00
context_test.go dep: Allow explicitly setting the project root 2018-06-04 23:33:01 -04:00
doc.go improve godoc; replace Loggers with embeded fields; refactor Ctx api 2017-06-07 08:46:44 -05:00
install.sh dep: Use only POSIX-compatible sh syntax 2018-07-11 09:18:24 -04:00
lock.go dep: Update scads of tests 2018-07-03 19:14:30 -04:00
lock_test.go dep: Get DeltaWriter into a working state 2018-07-03 01:41:47 -04:00
manifest.go dep: Update scads of tests 2018-07-03 19:14:30 -04:00
manifest_test.go [FIX] Cleanup code 2018-02-11 15:20:44 +03:00
project.go dep: Introduce dep check subcommand 2018-07-12 00:51:18 -04:00
project_test.go dep: Update scads of tests 2018-07-03 19:14:30 -04:00
test_project_context_test.go Move gps package out of internal 2017-11-10 17:02:30 -08:00
txn_writer.go dep: Make SafeWriter use status map for OnChanged 2018-07-20 17:21:18 -07:00
txn_writer_test.go dep: Make SafeWriter use status map for OnChanged 2018-07-20 17:21:18 -07:00

README.md

Build Status Windows Build Status

Dep

dep is a prototype dependency management tool for Go. It requires Go 1.9 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

On other platforms you can use the install.sh script:

$ curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh

It will install into your $GOPATH/bin directory by default or any other directory you specify using the INSTALL_DIRECTORY environment variable.

If your platform is not supported, you'll need to build it manually or let the team know and we'll consider adding your platform to the release builds.

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? Let us know by filing 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.