37 lines
1.3 KiB
Modula-2
37 lines
1.3 KiB
Modula-2
module relay-server
|
|
|
|
go 1.23
|
|
|
|
require (
|
|
github.com/gofiber/fiber/v2 v2.52.6
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/lib/pq v1.10.9
|
|
golang.org/x/crypto v0.32.0
|
|
)
|
|
|
|
require (
|
|
github.com/MicahParks/keyfunc/v2 v2.1.0 // indirect
|
|
github.com/andybalholm/brotli v1.1.1 // indirect
|
|
github.com/fasthttp/websocket v1.5.12 // indirect
|
|
github.com/gofiber/contrib/jwt v1.0.10 // indirect
|
|
github.com/gofiber/contrib/socketio v1.1.4 // indirect
|
|
github.com/gofiber/contrib/websocket v1.3.3 // indirect
|
|
github.com/gofrs/uuid v4.0.0+incompatible // indirect
|
|
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
|
|
github.com/gomodule/redigo v1.8.4 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/googollee/go-socket.io v1.7.0 // indirect
|
|
github.com/gorilla/websocket v1.4.2 // indirect
|
|
github.com/klauspost/compress v1.17.11 // indirect
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mattn/go-runewidth v0.0.16 // indirect
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
github.com/savsgio/gotils v0.0.0-20240704082632-aef3928b8a38 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasthttp v1.58.0 // indirect
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
|
golang.org/x/net v0.34.0 // indirect
|
|
golang.org/x/sys v0.30.0 // indirect
|
|
)
|