forked from GoogleCloudPlatform/microservices-demo
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
23 additions
and
59 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,41 @@ | ||
module github.com/signalfx/microservices-demo/src/productcatalogservice | ||
|
||
go 1.14 | ||
go 1.20 | ||
|
||
require ( | ||
cloud.google.com/go v0.40.0 | ||
github.com/golang/protobuf v1.3.2 | ||
github.com/google/go-cmp v0.3.1 | ||
github.com/opentracing/opentracing-go v1.2.0 | ||
github.com/signalfx/signalfx-go-tracing v1.5.0 | ||
github.com/sirupsen/logrus v1.4.2 | ||
go.opencensus.io v0.22.2 | ||
golang.org/x/net v0.14.0 | ||
google.golang.org/grpc v1.26.0 | ||
) | ||
|
||
require ( | ||
github.com/dropbox/godropbox v0.0.0-20200228041828-52ad444d3502 // indirect | ||
github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 // indirect | ||
github.com/facebookgo/stackerr v0.0.0-20150612192056-c2fcf88613f4 // indirect | ||
github.com/go-kit/kit v0.10.0 // indirect | ||
github.com/golang/protobuf v1.3.2 | ||
github.com/google/go-cmp v0.3.1 | ||
github.com/go-logfmt/logfmt v0.5.0 // indirect | ||
github.com/go-stack/stack v1.8.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6 // indirect | ||
github.com/google/pprof v0.0.0-20190515194954-54271f7e092f // indirect | ||
github.com/googleapis/gax-go/v2 v2.0.4 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/juju/errors v0.0.0-20200330140219-3fe23663418f // indirect | ||
github.com/juju/testing v0.0.0-20200706033705-4c23f9c453cd // indirect | ||
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect | ||
github.com/mailru/easyjson v0.7.6 // indirect | ||
github.com/opentracing/opentracing-go v1.2.0 | ||
github.com/philhofer/fwd v1.0.0 // indirect | ||
github.com/signalfx/golib v2.5.1+incompatible // indirect | ||
github.com/signalfx/signalfx-go-tracing v1.5.0 | ||
github.com/sirupsen/logrus v1.4.2 | ||
github.com/smartystreets/goconvey v1.6.4 // indirect | ||
github.com/tinylib/msgp v1.1.2 // indirect | ||
go.opencensus.io v0.22.2 | ||
golang.org/x/net v0.14.0 | ||
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 // indirect | ||
golang.org/x/sys v0.11.0 // indirect | ||
golang.org/x/text v0.12.0 // indirect | ||
google.golang.org/api v0.7.1-0.20190709010654-aae1d1b89c27 // indirect | ||
google.golang.org/appengine v1.6.1 // indirect | ||
google.golang.org/grpc v1.26.0 | ||
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55 // indirect | ||
) |
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