37 lines
1.3 KiB
Modula-2
37 lines
1.3 KiB
Modula-2
module github.com/fpmb/server
|
|
|
|
go 1.24.0
|
|
|
|
require (
|
|
github.com/gofiber/fiber/v2 v2.52.12
|
|
github.com/golang-jwt/jwt/v5 v5.3.1
|
|
github.com/joho/godotenv v1.5.1
|
|
go.mongodb.org/mongo-driver v1.17.9
|
|
golang.org/x/crypto v0.48.0
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.1.0 // indirect
|
|
github.com/fasthttp/websocket v1.5.3 // indirect
|
|
github.com/gofiber/websocket/v2 v2.2.1 // indirect
|
|
github.com/golang/snappy v0.0.4 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/klauspost/compress v1.17.9 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mattn/go-runewidth v0.0.16 // indirect
|
|
github.com/montanaflynn/stats v0.7.1 // indirect
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
github.com/savsgio/gotils v0.0.0-20230208104028-c358bd845dee // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasthttp v1.51.0 // indirect
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
|
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
|
|
github.com/xdg-go/scram v1.1.2 // indirect
|
|
github.com/xdg-go/stringprep v1.0.4 // indirect
|
|
github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78 // indirect
|
|
golang.org/x/sync v0.19.0 // indirect
|
|
golang.org/x/sys v0.41.0 // indirect
|
|
golang.org/x/text v0.34.0 // indirect
|
|
)
|