Codebase list go-dep / f13583b
README: clarify deprecation and point to modules See https://github.com/golang/go/issues/38158. Daniel Martí 3 years ago
2 changed file(s) with 7 addition(s) and 24 deletion(s). Raw diff Collapse all Expand all
44 <a href="https://goreportcard.com/report/github.com/golang/dep"><img src="https://goreportcard.com/badge/github.com/golang/dep" /></a>
55 </p>
66
7 <i>Would you like to see your company name here? <a
8 href="https://github.com/golang/dep/issues/2165">We're looking for a stable source of
9 funding.</a></i>
10
117 ## Dep
128
139 `dep` is a dependency management tool for Go. It requires Go 1.9 or newer to compile.
1410
15 `dep` was initially developed to experiment with a new dependency management system
16 for Go; but, as of Go 1.11, **the Go project has officially adopted a different approach,
17 based on the concept of Modules**, which is described in a [series of posts](https://blog.golang.org/using-go-modules)
18 published on [blog.golang.org](https://blog.golang.org).
11 **NOTE:** Dep was an official experiment to implement a package manager for Go.
12 As of 2020, Dep is deprecated and archived in favor of Go modules, which have
13 had official support since Go 1.11. For more details, see https://golang.org/ref/mod.
1914
2015 For guides and reference materials about `dep`, see [the documentation](https://golang.github.io/dep).
2116
5752 ```sh
5853 go get -u github.com/golang/dep/cmd/dep
5954 ```
60
61 ## Feedback
62
63 Feedback is greatly appreciated.
64 At this stage, the maintainers are most interested in feedback centered on the user experience (UX) of the tool.
65 Do you have workflows that the tool supports well, or doesn't support at all?
66 Do any of the commands have surprising effects, output, or results?
67 Let us know by filing an issue, describing what you did or wanted to do, what you expected to happen, and what actually happened.
68
69 ## Contributing
70
71 Contributions are greatly appreciated.
72 The maintainers actively manage the issues list, and try to highlight issues suitable for newcomers.
73 The project follows the typical GitHub pull request model.
74 See [CONTRIBUTING.md](CONTRIBUTING.md) for more details.
75 Before starting any work, please either comment on an existing issue, or file a new one.
11 id: introduction
22 title: Getting Started
33 ---
4
5 **NOTE:** Dep was an official experiment to implement a package manager for Go.
6 As of 2020, Dep is deprecated and archived in favor of Go modules, which have
7 had official support since Go 1.11. For more details, see https://golang.org/ref/mod.
48
59 Welcome! This is documentation for dep, the "official experiment" dependency management tool for the Go language. Dep is a tool intended primarily for use by developers, to support the work of actually writing and shipping code. It is _not_ intended for end users who are installing Go software - that's what `go get` does.
610