rogueserver/go.mod

27 lines
663 B
Modula-2
Raw Normal View History

2024-04-29 15:22:27 -04:00
module github.com/pagefaultgames/rogueserver
2023-11-30 13:04:27 -05:00
2024-02-21 15:33:38 -05:00
go 1.22
2023-12-28 19:53:59 -05:00
2023-12-28 19:58:54 -05:00
require (
github.com/go-sql-driver/mysql v1.7.1
2024-04-16 21:01:24 -04:00
github.com/robfig/cron/v3 v3.0.1
2024-05-06 14:02:10 -04:00
golang.org/x/crypto v0.22.0
2023-12-28 19:58:54 -05:00
)
2023-12-28 19:53:59 -05:00
2024-05-06 14:02:10 -04:00
require (
github.com/golang/protobuf v1.5.3 // indirect
github.com/gorilla/context v1.1.1 // indirect
github.com/gorilla/mux v1.6.2 // indirect
github.com/gorilla/securecookie v1.1.2 // indirect
golang.org/x/oauth2 v0.17.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/protobuf v1.32.0 // indirect
)
require (
github.com/gorilla/sessions v1.2.2
github.com/joho/godotenv v1.5.1
github.com/markbates/goth v1.79.0
golang.org/x/sys v0.19.0 // indirect
)