58 lines
2.0 KiB
Modula-2
58 lines
2.0 KiB
Modula-2
module rijig
|
|
|
|
go 1.23.3
|
|
|
|
require (
|
|
github.com/go-redis/redis/v8 v8.11.5
|
|
github.com/gofiber/fiber/v2 v2.52.5
|
|
github.com/golang-jwt/jwt/v5 v5.2.1
|
|
github.com/google/uuid v1.6.0
|
|
github.com/joho/godotenv v1.5.1
|
|
golang.org/x/crypto v0.36.0
|
|
gorm.io/driver/postgres v1.5.11
|
|
gorm.io/gorm v1.25.12
|
|
)
|
|
|
|
require (
|
|
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
|
|
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // direct
|
|
)
|
|
|
|
// require (
|
|
// golang.org/x/term v0.30.0 // indirect
|
|
// rsc.io/qr v0.2.0 // indirect
|
|
// )
|
|
|
|
require (
|
|
filippo.io/edwards25519 v1.1.0 // indirect
|
|
github.com/andybalholm/brotli v1.0.5 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/gorilla/websocket v1.5.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
|
|
github.com/jackc/pgx/v5 v5.5.5 // indirect
|
|
github.com/jackc/puddle/v2 v2.2.1 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
github.com/klauspost/compress v1.17.0 // indirect
|
|
github.com/lib/pq v1.10.9
|
|
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.15 // indirect
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
github.com/rs/zerolog v1.33.0 // indirect
|
|
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e // direct
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasthttp v1.51.0 // indirect
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
|
go.mau.fi/libsignal v0.1.2 // indirect
|
|
go.mau.fi/util v0.8.6 // indirect
|
|
go.mau.fi/whatsmeow v0.0.0-20250316144733-e7e263bf2175
|
|
golang.org/x/net v0.37.0 // indirect
|
|
golang.org/x/sync v0.12.0 // indirect
|
|
golang.org/x/sys v0.31.0 // indirect
|
|
golang.org/x/text v0.23.0 // indirect
|
|
google.golang.org/protobuf v1.36.5
|
|
)
|