-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* update dependencies * update versions for manual testing
- Loading branch information
Showing
9 changed files
with
297 additions
and
740 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
module github.com/mbobakov/grpc-consul-resolver | ||
|
||
go 1.13 | ||
|
||
require ( | ||
github.com/armon/go-metrics v0.3.0 // indirect | ||
github.com/go-playground/form v3.1.3+incompatible | ||
github.com/hashicorp/consul/api v1.1.0 | ||
github.com/hashicorp/go-msgpack v0.5.5 // indirect | ||
github.com/hashicorp/memberlist v0.1.5 // indirect | ||
github.com/jpillora/backoff v0.0.0-20180909062703-3050d21c67d7 | ||
github.com/go-playground/form v3.1.4+incompatible | ||
github.com/golang/mock v1.1.1 | ||
github.com/google/btree v1.0.0 // indirect | ||
github.com/hashicorp/consul/api v1.3.0 | ||
github.com/jpillora/backoff v1.0.0 | ||
github.com/kr/pretty v0.1.0 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/pkg/errors v0.8.1 | ||
github.com/sirupsen/logrus v1.1.1 | ||
github.com/stretchr/testify v1.3.0 | ||
golang.org/x/crypto v0.0.0-20190325154230-a5d413f7728c // indirect | ||
golang.org/x/net v0.0.0-20190403144856-b630fd6fe46b // indirect | ||
golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6 // indirect | ||
golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e // indirect | ||
google.golang.org/grpc v1.2.1-0.20181011201045-c05280cc73cd | ||
github.com/sirupsen/logrus v1.4.2 | ||
github.com/stretchr/testify v1.4.0 | ||
golang.org/x/net v0.0.0-20190522155817-f3200d17e092 // indirect | ||
google.golang.org/grpc v1.26.0 | ||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect | ||
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect | ||
gopkg.in/yaml.v2 v2.2.4 // indirect | ||
) |
Oops, something went wrong.