-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #371 from maxekman/update-deps
Update dependencies, go.mod to Go 1.17
- Loading branch information
Showing
2 changed files
with
129 additions
and
108 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,66 @@ | ||
module github.com/looplab/eventhorizon | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
cloud.google.com/go/pubsub v1.15.0 | ||
github.com/HdrHistogram/hdrhistogram-go v1.1.1 // indirect | ||
github.com/go-redis/redis/v8 v8.11.3 | ||
cloud.google.com/go/pubsub v1.17.1 | ||
github.com/go-redis/redis/v8 v8.11.4 | ||
github.com/google/uuid v1.3.0 | ||
github.com/gorhill/cronexpr v0.0.0-20180427100037-88b0669f7d75 | ||
github.com/gorilla/websocket v1.4.2 | ||
github.com/jinzhu/copier v0.3.2 | ||
github.com/jinzhu/copier v0.3.4 | ||
github.com/jpillora/backoff v1.0.0 | ||
github.com/kr/pretty v0.3.0 | ||
github.com/nats-io/nats-server/v2 v2.4.0 // indirect | ||
github.com/nats-io/nats.go v1.12.1 | ||
github.com/nats-io/nats.go v1.13.0 | ||
github.com/opentracing/opentracing-go v1.2.0 | ||
github.com/segmentio/kafka-go v0.4.23 | ||
github.com/segmentio/kafka-go v0.4.25 | ||
github.com/uber/jaeger-client-go v2.29.1+incompatible | ||
go.mongodb.org/mongo-driver v1.8.0 | ||
google.golang.org/api v0.61.0 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go v0.97.0 // indirect | ||
github.com/HdrHistogram/hdrhistogram-go v1.1.2 // indirect | ||
github.com/census-instrumentation/opencensus-proto v0.2.1 // indirect | ||
github.com/cespare/xxhash v1.1.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403 // indirect | ||
github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0 // indirect | ||
github.com/envoyproxy/protoc-gen-validate v0.1.0 // indirect | ||
github.com/go-stack/stack v1.8.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/golang/snappy v0.0.3 // indirect | ||
github.com/google/go-cmp v0.5.6 // indirect | ||
github.com/googleapis/gax-go/v2 v2.1.1 // indirect | ||
github.com/klauspost/compress v1.13.6 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/nats-io/jwt/v2 v2.2.0 // indirect | ||
github.com/nats-io/nats-server/v2 v2.6.2 // indirect | ||
github.com/nats-io/nkeys v0.3.0 // indirect | ||
github.com/nats-io/nuid v1.0.1 // indirect | ||
github.com/pierrec/lz4 v2.6.0+incompatible // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/rogpeppe/go-internal v1.6.1 // indirect | ||
github.com/stretchr/testify v1.7.0 // indirect | ||
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect | ||
go.mongodb.org/mongo-driver v1.7.1 | ||
github.com/xdg-go/pbkdf2 v1.0.0 // indirect | ||
github.com/xdg-go/scram v1.0.2 // indirect | ||
github.com/xdg-go/stringprep v1.0.2 // indirect | ||
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect | ||
go.opencensus.io v0.23.0 // indirect | ||
go.uber.org/atomic v1.9.0 // indirect | ||
google.golang.org/api v0.54.0 | ||
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e // indirect | ||
golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420 // indirect | ||
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect | ||
golang.org/x/sys v0.0.0-20211124211545-fe61309f8881 // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1 // indirect | ||
google.golang.org/grpc v1.40.0 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
) |
Oops, something went wrong.