|
1 | 1 | module github.com/hellofresh/janus
|
2 | 2 |
|
3 |
| -go 1.15 |
| 3 | +go 1.17 |
4 | 4 |
|
5 | 5 | require (
|
6 | 6 | code.cloudfoundry.org/bytefmt v0.0.0-20180108190415-b31f603f5e1e
|
7 | 7 | contrib.go.opencensus.io/exporter/jaeger v0.2.1
|
8 | 8 | contrib.go.opencensus.io/exporter/prometheus v0.3.0
|
9 |
| - github.com/DataDog/datadog-go v0.0.0-20180330214955-e67964b4021a // indirect |
10 | 9 | github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible
|
11 | 10 | github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5
|
12 | 11 | github.com/asaskevich/govalidator v0.0.0-20171111151018-521b25f4b05f
|
13 |
| - github.com/bshuster-repo/logrus-logstash-hook v0.4.1 // indirect |
14 |
| - github.com/cactus/go-statsd-client v3.1.1+incompatible // indirect |
15 | 12 | github.com/cucumber/godog v0.10.0
|
16 | 13 | github.com/cucumber/messages-go/v10 v10.0.3
|
17 | 14 | github.com/dgrijalva/jwt-go v3.2.0+incompatible
|
18 | 15 | github.com/felixge/httpsnoop v1.0.0
|
19 |
| - github.com/fiam/gounidecode v0.0.0-20150629112515-8deddbd03fec // indirect |
20 | 16 | github.com/fsnotify/fsnotify v1.4.9
|
21 | 17 | github.com/go-chi/chi v3.3.2+incompatible
|
22 | 18 | github.com/go-redis/redis/v7 v7.4.0
|
23 | 19 | github.com/gocql/gocql v0.0.0-20200624222514-34081eda590e
|
24 | 20 | github.com/gofrs/uuid v3.3.0+incompatible
|
| 21 | + github.com/golang-jwt/jwt/v4 v4.4.3 |
25 | 22 | github.com/google/go-github v17.0.0+incompatible
|
26 |
| - github.com/google/go-querystring v0.0.0-20170111101155-53e6ce116135 // indirect |
27 | 23 | github.com/hellofresh/health-go/v3 v3.2.0
|
28 | 24 | github.com/hellofresh/logging-go v0.1.6
|
29 | 25 | github.com/hellofresh/opencensus-go-extras v0.0.0-20191004131501-7bd94f603dcf
|
30 | 26 | github.com/hellofresh/stats-go v0.8.0
|
31 | 27 | github.com/kelseyhightower/envconfig v1.3.0
|
32 |
| - github.com/klauspost/compress v1.10.10 // indirect |
33 | 28 | github.com/magiconair/properties v1.8.1
|
34 | 29 | github.com/mitchellh/go-homedir v1.1.0
|
35 | 30 | github.com/mitchellh/mapstructure v1.1.2
|
36 |
| - github.com/onsi/ginkgo v1.13.0 // indirect |
37 | 31 | github.com/opentracing/opentracing-go v1.2.0
|
38 | 32 | github.com/rafaeljesus/retry-go v0.0.0-20171214204623-5981a380a879
|
39 | 33 | github.com/rs/cors v1.4.0
|
| 34 | + github.com/segmentio/kafka-go v0.4.38 |
40 | 35 | github.com/sirupsen/logrus v1.7.0
|
41 | 36 | github.com/spf13/cobra v1.0.0
|
42 |
| - github.com/spf13/pflag v1.0.5 // indirect |
43 | 37 | github.com/spf13/viper v1.7.1
|
44 |
| - github.com/stretchr/testify v1.6.1 |
| 38 | + github.com/stretchr/testify v1.8.1 |
45 | 39 | github.com/tidwall/gjson v1.1.0
|
46 |
| - github.com/tidwall/match v1.0.0 // indirect |
47 | 40 | github.com/ulule/limiter/v3 v3.5.0
|
48 | 41 | go.mongodb.org/mongo-driver v1.4.1
|
49 | 42 | go.opencensus.io v0.23.0
|
50 |
| - golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 |
51 |
| - golang.org/x/net v0.0.0-20201110031124-69a78807bb2b |
| 43 | + golang.org/x/crypto v0.5.0 |
| 44 | + golang.org/x/net v0.5.0 |
52 | 45 | golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
|
| 46 | +) |
| 47 | + |
| 48 | +require ( |
| 49 | + github.com/DataDog/datadog-go v0.0.0-20180330214955-e67964b4021a // indirect |
| 50 | + github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect |
| 51 | + github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect |
| 52 | + github.com/aws/aws-sdk-go v1.29.15 // indirect |
| 53 | + github.com/beorn7/perks v1.0.1 // indirect |
| 54 | + github.com/bshuster-repo/logrus-logstash-hook v0.4.1 // indirect |
| 55 | + github.com/cactus/go-statsd-client v3.1.1+incompatible // indirect |
| 56 | + github.com/cespare/xxhash/v2 v2.1.1 // indirect |
| 57 | + github.com/cucumber/gherkin-go/v11 v11.0.0 // indirect |
| 58 | + github.com/davecgh/go-spew v1.1.1 // indirect |
| 59 | + github.com/fiam/gounidecode v0.0.0-20150629112515-8deddbd03fec // indirect |
| 60 | + github.com/go-stack/stack v1.8.0 // indirect |
| 61 | + github.com/gogo/protobuf v1.3.1 // indirect |
| 62 | + github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect |
| 63 | + github.com/golang/protobuf v1.4.3 // indirect |
| 64 | + github.com/golang/snappy v0.0.1 // indirect |
| 65 | + github.com/google/go-querystring v0.0.0-20170111101155-53e6ce116135 // indirect |
| 66 | + github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed // indirect |
| 67 | + github.com/hashicorp/go-immutable-radix v1.2.0 // indirect |
| 68 | + github.com/hashicorp/go-memdb v1.2.1 // indirect |
| 69 | + github.com/hashicorp/golang-lru v0.5.4 // indirect |
| 70 | + github.com/hashicorp/hcl v1.0.0 // indirect |
| 71 | + github.com/inconshreveable/mousetrap v1.0.0 // indirect |
| 72 | + github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af // indirect |
| 73 | + github.com/klauspost/compress v1.15.15 // indirect |
| 74 | + github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect |
| 75 | + github.com/onsi/ginkgo v1.13.0 // indirect |
| 76 | + github.com/onsi/gomega v1.10.1 // indirect |
| 77 | + github.com/pelletier/go-toml v1.4.0 // indirect |
| 78 | + github.com/pierrec/lz4/v4 v4.1.17 // indirect |
| 79 | + github.com/pkg/errors v0.9.1 // indirect |
| 80 | + github.com/pmezard/go-difflib v1.0.0 // indirect |
| 81 | + github.com/prometheus/client_golang v1.9.0 // indirect |
| 82 | + github.com/prometheus/client_model v0.2.0 // indirect |
| 83 | + github.com/prometheus/common v0.15.0 // indirect |
| 84 | + github.com/prometheus/procfs v0.2.0 // indirect |
| 85 | + github.com/prometheus/statsd_exporter v0.20.0 // indirect |
| 86 | + github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a // indirect |
| 87 | + github.com/spf13/afero v1.1.2 // indirect |
| 88 | + github.com/spf13/cast v1.3.0 // indirect |
| 89 | + github.com/spf13/jwalterweatherman v1.0.0 // indirect |
| 90 | + github.com/spf13/pflag v1.0.5 // indirect |
| 91 | + github.com/subosito/gotenv v1.2.0 // indirect |
| 92 | + github.com/tidwall/match v1.0.0 // indirect |
| 93 | + github.com/uber/jaeger-client-go v2.25.0+incompatible // indirect |
| 94 | + github.com/xdg/scram v1.0.5 // indirect |
| 95 | + github.com/xdg/stringprep v1.0.3 // indirect |
| 96 | + golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 // indirect |
| 97 | + golang.org/x/sys v0.4.0 // indirect |
| 98 | + golang.org/x/text v0.6.0 // indirect |
53 | 99 | golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
| 100 | + google.golang.org/api v0.29.0 // indirect |
| 101 | + google.golang.org/appengine v1.6.5 // indirect |
| 102 | + google.golang.org/protobuf v1.25.0 // indirect |
| 103 | + gopkg.in/alecthomas/kingpin.v2 v2.2.6 // indirect |
54 | 104 | gopkg.in/alexcesaro/statsd.v2 v2.0.0 // indirect
|
| 105 | + gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect |
55 | 106 | gopkg.in/gemnasium/logrus-graylog-hook.v2 v2.0.6 // indirect
|
56 |
| - gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect |
| 107 | + gopkg.in/inf.v0 v0.9.1 // indirect |
| 108 | + gopkg.in/ini.v1 v1.51.0 // indirect |
| 109 | + gopkg.in/yaml.v2 v2.4.0 // indirect |
| 110 | + gopkg.in/yaml.v3 v3.0.1 // indirect |
57 | 111 | )
|
58 | 112 |
|
59 | 113 | replace git.apache.org/thrift.git => github.com/apache/thrift v0.12.0
|
0 commit comments