Go dependency management tool experiment (deprecated)
Перейти к файлу
tro3 56e7772f23 Changing "Ignores" to "Ignored" 2017-04-15 20:22:59 -07:00
cmd/dep Whoops, need to export Analyzer now 2017-04-15 01:23:16 -04:00
hack New filenames: Gopkg.toml and Gopkg.lock 2017-04-06 10:32:09 -05:00
test New filenames: Gopkg.toml and Gopkg.lock 2017-04-06 10:32:09 -05:00
testdata Changing "Ignores" to "Ignored" 2017-04-15 20:22:59 -07:00
vendor/github.com Update gps to v0.16.0 2017-04-15 00:58:03 -04:00
.gitattributes Prevent problems comparing golden files on Windows 2017-02-20 23:45:11 -05:00
.gitignore Moving to want/got pattern and adding unit test coverage 2017-02-12 23:52:17 -05:00
.travis.yml Use patch wildcards in travis; re-add OSX 2017-03-31 21:26:15 -04:00
AUTHORS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
CONTRIBUTING.md Update README, CONTRIBUTING with roadmap 2017-03-07 06:22:36 -05:00
CONTRIBUTORS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
Gopkg.lock Update gps to v0.16.0 2017-04-15 00:58:03 -04:00
Gopkg.toml Update gps to v0.16.0 2017-04-15 00:58:03 -04:00
LICENSE Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
PATENTS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
README.md Update README, CONTRIBUTING with roadmap 2017-03-07 06:22:36 -05:00
analyzer.go Whoops, need to export Analyzer now 2017-04-15 01:23:16 -04:00
analyzer_test.go Whoops, need to export Analyzer now 2017-04-15 01:23:16 -04:00
appveyor.yml Add 1.8 support for travis / appveyor 2017-02-23 12:45:59 -05:00
context.go Chase gps' API changes 2017-04-15 01:06:44 -04:00
context_test.go Merge pull request #342 from carolynvs/toml-allthethings 2017-04-13 01:24:11 -04:00
fs.go Update go-toml for nested custom Marshaler support 2017-04-04 23:56:22 -05:00
fs_test.go Fix test issue after upstream merge 2017-02-12 23:52:17 -05:00
lock.go New filenames: Gopkg.toml and Gopkg.lock 2017-04-06 10:32:09 -05:00
lock_test.go Update test files from JSON to TOML 2017-04-04 23:31:16 -05:00
manifest.go Changing "Ignores" to "Ignored" 2017-04-15 20:22:59 -07:00
manifest_test.go Changing "Ignores" to "Ignored" 2017-04-15 20:22:59 -07:00
project.go Whoops, need to export Analyzer now 2017-04-15 01:23:16 -04:00
project_test.go Changing "Ignores" to "Ignored" 2017-04-15 20:22:59 -07:00
test_project_context_test.go Change manifest and lock file names to manifest.toml and lock.toml 2017-04-04 21:10:43 -05:00
txn_writer.go Merge pull request #342 from carolynvs/toml-allthethings 2017-04-13 01:24:11 -04:00
txn_writer_test.go Move lock diff to TOML 2017-04-04 23:31:17 -05:00

README.md

Dep

Linux: Build Status | Windows: Build status

Dep is a prototype dependency management tool. It requires Go 1.7 or newer to compile.

dep is NOT an official tool. Yet. Check out the Roadmap!

Current status

Alpha. Functionality is known to be broken, missing or incomplete. Command and file format changes are still planned. The repository is open to solicit feedback and contributions from the community. Please see below for feedback and contribution guidelines.

Context

Usage

Get the tool via

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

Typical usage on a new repo might be

$ dep init
$ dep ensure -update

To update a dependency to a new version, you might run

$ dep ensure github.com/pkg/errors@^0.8.0

See the help text for much more detailed usage instructions.

Note that the manifest and lock file formats are not finalized, and will likely change before the tool is released. We make no compatibility guarantees for the time being. Please don't commit any code or files created with the tool.

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? Please check the existing issues to see if your feedback has already been reported. 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.