CookieMod/go.mod

35 lines
1.2 KiB
Modula-2
Raw Normal View History

2023-12-01 20:40:49 +01:00
module git.capy.sh/jann/cookiemod
go 1.21.1
2023-12-01 22:40:08 +01:00
require (
github.com/bwmarrin/discordgo v0.27.1
2023-12-02 04:26:02 +01:00
github.com/dgraph-io/badger/v4 v4.2.0
2023-12-01 22:40:08 +01:00
github.com/fatih/color v1.16.0
2023-12-03 23:17:05 +01:00
github.com/nicklaw5/helix v1.25.0
2023-12-02 04:26:02 +01:00
golang.org/x/term v0.5.0
2023-12-01 22:40:08 +01:00
)
2023-12-01 20:40:49 +01:00
require (
2023-12-02 04:26:02 +01:00
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/dgraph-io/ristretto v0.1.1 // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
2023-12-03 23:17:05 +01:00
github.com/golang-jwt/jwt v3.2.1+incompatible // indirect
2023-12-02 04:26:02 +01:00
github.com/golang/glog v1.0.0 // indirect
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/golang/snappy v0.0.3 // indirect
github.com/google/flatbuffers v1.12.1 // indirect
2023-12-01 22:40:08 +01:00
github.com/gorilla/websocket v1.4.2 // indirect
2023-12-02 04:26:02 +01:00
github.com/klauspost/compress v1.12.3 // indirect
2023-12-01 20:40:49 +01:00
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
2023-12-02 04:26:02 +01:00
github.com/pkg/errors v0.9.1 // indirect
go.opencensus.io v0.22.5 // indirect
2023-12-01 22:40:08 +01:00
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b // indirect
2023-12-02 04:26:02 +01:00
golang.org/x/net v0.7.0 // indirect
2023-12-01 20:40:49 +01:00
golang.org/x/sys v0.14.0 // indirect
2023-12-02 04:26:02 +01:00
google.golang.org/protobuf v1.28.1 // indirect
2023-12-01 20:40:49 +01:00
)