This repository has been archived by the owner on Mar 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Checking in bazel deps * Update deps and opt-out of TLS 1.3 * Deps update for Bazel/Gazelle * Added comments for nil interface check * Added erroneously removed line
- Loading branch information
Steve Ayers
authored
Oct 11, 2019
1 parent
7df3b95
commit f454097
Showing
10 changed files
with
171 additions
and
66 deletions.
There are no files selected for viewing
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,26 @@ | ||
module github.com/uber/prototool | ||
|
||
go 1.12 | ||
go 1.13 | ||
|
||
require ( | ||
github.com/emicklei/proto v1.6.12 | ||
github.com/fullstorydev/grpcurl v1.3.2 | ||
github.com/gobuffalo/flect v0.1.3 | ||
github.com/emicklei/proto v1.7.0 | ||
github.com/fullstorydev/grpcurl v1.4.0 | ||
github.com/gobuffalo/flect v0.1.6 | ||
github.com/gofrs/flock v0.7.1 | ||
github.com/golang/protobuf v1.3.1 | ||
github.com/golang/protobuf v1.3.2 | ||
github.com/jhump/protoreflect v1.5.0 | ||
github.com/mitchellh/go-wordwrap v1.0.0 | ||
github.com/pkg/errors v0.8.1 // indirect | ||
github.com/spf13/cobra v0.0.4 | ||
github.com/spf13/pflag v1.0.3 | ||
github.com/stretchr/testify v1.3.0 | ||
github.com/spf13/cobra v0.0.5 | ||
github.com/spf13/pflag v1.0.5 | ||
github.com/stretchr/testify v1.4.0 | ||
go.uber.org/atomic v1.4.0 // indirect | ||
go.uber.org/multierr v1.1.0 | ||
go.uber.org/multierr v1.2.0 | ||
go.uber.org/zap v1.10.0 | ||
google.golang.org/grpc v1.21.0 | ||
gopkg.in/yaml.v2 v2.2.2 | ||
golang.org/x/net v0.0.0-20191009170851-d66e71096ffb // indirect | ||
golang.org/x/sys v0.0.0-20191010194322-b09406accb47 // indirect | ||
golang.org/x/text v0.3.2 // indirect | ||
google.golang.org/genproto v0.0.0-20191009194640-548a555dbc03 // indirect | ||
google.golang.org/grpc v1.24.0 | ||
gopkg.in/yaml.v2 v2.2.4 | ||
) |
Oops, something went wrong.