-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
go.mod
34 lines (31 loc) · 1.24 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
module github.com/bcneng/candebot
go 1.20
require (
github.com/alecthomas/kong v0.7.1
github.com/asaskevich/EventBus v0.0.0-20200907212545-49d423059eef
github.com/avast/retry-go/v4 v4.5.1
github.com/bcneng/twitter-contest v0.0.0-20210125112923-eb139f65d81c
github.com/newrelic/newrelic-telemetry-sdk-go v0.8.1
github.com/pelletier/go-toml/v2 v2.2.1
github.com/sethvargo/go-envconfig v0.9.0
github.com/slack-go/slack v0.12.1
github.com/stretchr/testify v1.9.0
golang.org/x/text v0.14.0
)
require (
github.com/cenkalti/backoff v2.1.1+incompatible // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dghubble/go-twitter v0.0.0-20201011215211-4b180d0cc78d // indirect
github.com/dghubble/sling v1.3.0 // indirect
github.com/golang/protobuf v1.4.2 // indirect
github.com/google/go-querystring v1.0.0 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sirupsen/logrus v1.7.0 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/oauth2 v0.0.0-20210113205817-d3ed898aa8a3 // indirect
golang.org/x/sys v0.18.0 // indirect
google.golang.org/appengine v1.6.6 // indirect
google.golang.org/protobuf v1.25.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)