-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
69 lines (66 loc) · 3.25 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
module gitlab.com/Cacophony/Gateway
require (
github.com/bwmarrin/discordgo v0.25.0
github.com/getsentry/raven-go v0.2.0
github.com/go-redis/redis v6.15.2+incompatible
github.com/honeycombio/opentelemetry-exporter-go v0.12.0
github.com/kelseyhightower/envconfig v1.4.0
github.com/pkg/errors v0.9.1
gitlab.com/Cacophony/go-kit v0.0.0-20220709223358-ab145b942eea
go.opentelemetry.io/contrib/propagators v0.12.0
go.opentelemetry.io/otel v0.12.0
go.opentelemetry.io/otel/sdk v0.12.0
go.uber.org/zap v1.10.0
)
require (
github.com/Masterminds/goutils v1.1.0 // indirect
github.com/Masterminds/semver v1.4.2 // indirect
github.com/Masterminds/sprig v2.20.0+incompatible // indirect
github.com/Seklfreak/polr-go v0.0.0-20190324143256-a87fed130937 // indirect
github.com/Unleash/unleash-client-go/v3 v3.0.0 // indirect
github.com/census-instrumentation/opencensus-proto v0.2.1 // indirect
github.com/certifi/gocertifi v0.0.0-20190506164543-d2eda7129713 // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a // indirect
github.com/facebookgo/limitgroup v0.0.0-20150612190941-6abd8d71ec01 // indirect
github.com/facebookgo/muster v0.0.0-20150708232844-fd3d7953fd52 // indirect
github.com/go-chi/chi v4.0.2+incompatible // indirect
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
github.com/golang/protobuf v1.4.3 // indirect
github.com/google/uuid v1.1.2 // indirect
github.com/googleapis/gax-go v2.0.2+incompatible // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 // indirect
github.com/honeycombio/libhoney-go v1.12.4 // indirect
github.com/huandu/xstrings v1.2.0 // indirect
github.com/imdario/mergo v0.3.7 // indirect
github.com/jinzhu/gorm v1.9.8 // indirect
github.com/jinzhu/inflection v0.0.0-20190603042836-f5c5f50e6090 // indirect
github.com/json-iterator/go v1.1.6 // indirect
github.com/klauspost/compress v1.10.10 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/pelletier/go-toml v1.4.0 // indirect
github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72 // indirect
github.com/streadway/amqp v1.0.0 // indirect
github.com/vmihailenco/msgpack/v4 v4.3.12 // indirect
github.com/vmihailenco/tagparser v0.1.1 // indirect
go.opencensus.io v0.22.5 // indirect
go.uber.org/atomic v1.4.0 // indirect
go.uber.org/multierr v1.1.0 // indirect
gocloud.dev v0.20.0 // indirect
gocloud.dev/pubsub/rabbitpubsub v0.20.0 // indirect
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
golang.org/x/sync v0.0.0-20201008141435-b3e1573b7520 // indirect
golang.org/x/sys v0.0.0-20220708085239-5a0f0661e09d // indirect
golang.org/x/text v0.3.6 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/appengine v1.6.6 // indirect
google.golang.org/genproto v0.0.0-20201015140912-32ed001d685c // indirect
google.golang.org/grpc v1.33.0 // indirect
google.golang.org/protobuf v1.25.0 // indirect
gopkg.in/alexcesaro/statsd.v2 v2.0.0 // indirect
mvdan.cc/xurls/v2 v2.0.0 // indirect
)
go 1.18