diff --git a/README.md b/README.md index 0db549022..1d4555a8e 100644 --- a/README.md +++ b/README.md @@ -7,23 +7,12 @@ An application framework for Go that: ## Installation -We recommend locking to [SemVer](http://semver.org/) range `^1` using [Glide](https://github.com/Masterminds/glide): +We recommend locking to [SemVer](http://semver.org/) range `^1` using [go mod](https://github.com/golang/go/wiki/Modules): -``` -glide get 'go.uber.org/fx#^1' -``` - -Alternatively you can add it as a dependency using [go mod](https://github.com/golang/go/wiki/Modules): - -``` +```shell go get go.uber.org/fx@v1 ``` -Or by using [dep](https://github.com/golang/dep): -``` -dep ensure -add go.uber.org/fx@1.0.0 -``` - ## Stability This library is `v1` and follows [SemVer](http://semver.org/) strictly. diff --git a/glide.yaml b/glide.yaml deleted file mode 100644 index 2661677f9..000000000 --- a/glide.yaml +++ /dev/null @@ -1,25 +0,0 @@ -package: go.uber.org/fx -import: -- package: go.uber.org/multierr - version: ^1 -- package: go.uber.org/dig - version: ^1.10 # Required for fx.ValidateApp support. -testImport: -- package: github.com/stretchr/testify - version: ^1 - subpackages: - - assert - - require -- package: go.uber.org/tools - subpackages: - - update-license -- package: golang.org/x/tools - subpackages: - - cover -- package: golang.org/x/lint - repo: https://github.com/golang/lint - vcs: git - subpackages: - - golint -- package: go.uber.org/goleak - version: ~0.10