-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathgo.mod
71 lines (67 loc) · 2.74 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
70
71
module github.com/pajbot/pajbot2
go 1.22.1
toolchain go1.23.0
require (
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751
github.com/anknown/ahocorasick v0.0.0-20190904063843-d75dbd5169c0
github.com/frankban/quicktest v1.14.6
github.com/gempir/go-twitch-irc/v4 v4.2.0
github.com/go-sql-driver/mysql v1.8.1
github.com/google/go-cmp v0.6.0
github.com/gorilla/handlers v1.5.2
github.com/gorilla/mux v1.8.1
github.com/gorilla/websocket v1.5.3
github.com/labstack/echo/v4 v4.13.3
github.com/lib/pq v1.10.9
github.com/nicklaw5/helix/v2 v2.31.0
github.com/pajbot/commandmatcher v1.0.1
github.com/pajbot/utils v1.0.0
github.com/pajlada/go-twitch-pubsub v0.1.1
github.com/pajlada/gobttv v1.0.0
github.com/pajlada/goffz v0.0.0-20160911112502-19eae10bc4f6
github.com/pajlada/lidl-normalize v1.0.0
github.com/pajlada/stupidmigration v0.1.0
github.com/pkg/errors v0.9.1
github.com/swaggo/echo-swagger v1.4.1
github.com/swaggo/swag v1.16.4
github.com/tevino/abool/v2 v2.1.0
github.com/urakozz/go-emoji v0.0.0-20200127103110-a37fee94b407
golang.org/x/oauth2 v0.25.0
honnef.co/go/tools v0.5.1
mvdan.cc/xurls/v2 v2.6.0
)
require (
filippo.io/edwards25519 v1.1.0 // indirect
github.com/BurntSushi/toml v1.4.1-0.20240526193622-a339e1f7089c // indirect
github.com/KyleBanks/depth v1.2.1 // indirect
github.com/anknown/darts v0.0.0-20151216065714-83ff685239e6 // indirect
github.com/dankeroni/jsonapi v0.0.0-20160914195301-7aa17e21f323 // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/ghodss/yaml v1.0.0 // indirect
github.com/go-openapi/jsonpointer v0.20.0 // indirect
github.com/go-openapi/jsonreference v0.20.2 // indirect
github.com/go-openapi/spec v0.20.9 // indirect
github.com/go-openapi/swag v0.22.4 // indirect
github.com/golang-jwt/jwt/v4 v4.5.1 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/labstack/gommon v0.4.2 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/rogpeppe/go-internal v1.13.2-0.20241226121412-a5dc8ff20d0a // indirect
github.com/swaggo/files/v2 v2.0.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/exp/typeparams v0.0.0-20240808152545-0cdaa3abc0fa // indirect
golang.org/x/mod v0.22.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
golang.org/x/tools v0.28.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)