|
1 | 1 | module github.com/goto/raccoon |
2 | 2 |
|
3 | | -go 1.17 |
| 3 | +go 1.24 |
4 | 4 |
|
5 | 5 | require ( |
6 | 6 | buf.build/gen/go/gotocompany/proton/grpc/go v1.3.0-20230313110213-9a3d240d5293.1 |
7 | 7 | buf.build/gen/go/gotocompany/proton/protocolbuffers/go v1.29.0-20230313110213-9a3d240d5293.1 |
| 8 | + github.com/gojek/courier-go v0.7.8 |
| 9 | + github.com/gojek/courier-go/consul v0.7.3 |
8 | 10 | github.com/gorilla/mux v1.7.4 |
9 | | - github.com/gorilla/websocket v1.4.2 |
| 11 | + github.com/gorilla/websocket v1.5.3 |
| 12 | + github.com/goto/raccoon/clients/go v0.0.0-20250203072106-1dbea749aaf3 |
10 | 13 | github.com/sirupsen/logrus v1.6.0 |
11 | 14 | github.com/spf13/viper v1.7.0 |
12 | | - github.com/stretchr/testify v1.8.1 |
| 15 | + github.com/stretchr/testify v1.9.0 |
13 | 16 | google.golang.org/grpc v1.53.0 |
14 | 17 | google.golang.org/protobuf v1.29.0 |
15 | 18 | gopkg.in/alexcesaro/statsd.v2 v2.0.0 |
16 | 19 | gopkg.in/confluentinc/confluent-kafka-go.v1 v1.4.2 |
17 | 20 | ) |
18 | 21 |
|
19 | 22 | require ( |
| 23 | + github.com/armon/go-metrics v0.4.1 // indirect |
20 | 24 | github.com/confluentinc/confluent-kafka-go v1.4.2 // indirect |
21 | | - github.com/davecgh/go-spew v1.1.1 // indirect |
| 25 | + github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect |
| 26 | + github.com/fatih/color v1.16.0 // indirect |
22 | 27 | github.com/fsnotify/fsnotify v1.4.7 // indirect |
| 28 | + github.com/gojek/paho.mqtt.golang v1.7.0 // indirect |
| 29 | + github.com/gojekfarm/xtools/generic v0.7.0 // indirect |
23 | 30 | github.com/golang/protobuf v1.5.2 // indirect |
| 31 | + github.com/hashicorp/consul/api v1.32.1 // indirect |
| 32 | + github.com/hashicorp/errwrap v1.1.0 // indirect |
| 33 | + github.com/hashicorp/go-cleanhttp v0.5.2 // indirect |
| 34 | + github.com/hashicorp/go-hclog v1.5.0 // indirect |
| 35 | + github.com/hashicorp/go-immutable-radix v1.3.1 // indirect |
| 36 | + github.com/hashicorp/go-multierror v1.1.1 // indirect |
| 37 | + github.com/hashicorp/go-rootcerts v1.0.2 // indirect |
| 38 | + github.com/hashicorp/golang-lru v0.5.4 // indirect |
24 | 39 | github.com/hashicorp/hcl v1.0.0 // indirect |
| 40 | + github.com/hashicorp/serf v0.10.1 // indirect |
25 | 41 | github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect |
| 42 | + github.com/kr/text v0.2.0 // indirect |
26 | 43 | github.com/magiconair/properties v1.8.1 // indirect |
27 | | - github.com/mitchellh/mapstructure v1.1.2 // indirect |
| 44 | + github.com/mattn/go-colorable v0.1.13 // indirect |
| 45 | + github.com/mattn/go-isatty v0.0.20 // indirect |
| 46 | + github.com/mitchellh/go-homedir v1.1.0 // indirect |
| 47 | + github.com/mitchellh/mapstructure v1.5.0 // indirect |
28 | 48 | github.com/pelletier/go-toml v1.2.0 // indirect |
29 | | - github.com/pmezard/go-difflib v1.0.0 // indirect |
| 49 | + github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect |
30 | 50 | github.com/spf13/afero v1.9.2 // indirect |
31 | 51 | github.com/spf13/cast v1.3.0 // indirect |
32 | 52 | github.com/spf13/jwalterweatherman v1.0.0 // indirect |
33 | 53 | github.com/spf13/pflag v1.0.3 // indirect |
34 | | - github.com/stretchr/objx v0.5.0 // indirect |
| 54 | + github.com/stretchr/objx v0.5.2 // indirect |
35 | 55 | github.com/subosito/gotenv v1.2.0 // indirect |
36 | | - golang.org/x/net v0.5.0 // indirect |
37 | | - golang.org/x/sys v0.4.0 // indirect |
38 | | - golang.org/x/text v0.6.0 // indirect |
| 56 | + golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 // indirect |
| 57 | + golang.org/x/net v0.38.0 // indirect |
| 58 | + golang.org/x/sync v0.12.0 // indirect |
| 59 | + golang.org/x/sys v0.31.0 // indirect |
| 60 | + golang.org/x/text v0.23.0 // indirect |
39 | 61 | google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect |
40 | 62 | gopkg.in/ini.v1 v1.51.0 // indirect |
41 | | - gopkg.in/yaml.v2 v2.2.4 // indirect |
| 63 | + gopkg.in/yaml.v2 v2.2.5 // indirect |
42 | 64 | gopkg.in/yaml.v3 v3.0.1 // indirect |
43 | 65 | ) |
0 commit comments