-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
34 lines (31 loc) · 1.24 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
module github.com/unownone/go-chat
// +heroku goVersion go1.17
go 1.17
require (
github.com/gofiber/fiber/v2 v2.33.0
github.com/gofiber/websocket/v2 v2.0.21
github.com/golang-jwt/jwt/v4 v4.4.1
github.com/joho/godotenv v1.4.0
go.mongodb.org/mongo-driver v1.9.0
golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f
)
require (
github.com/andybalholm/brotli v1.0.4 // indirect
github.com/fasthttp/websocket v1.5.0 // indirect
github.com/go-stack/stack v1.8.1 // indirect
github.com/gofiber/template v1.6.27
github.com/golang/snappy v0.0.4 // indirect
github.com/klauspost/compress v1.15.3 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/savsgio/gotils v0.0.0-20220401102855-e56b59f40436 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.36.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.1 // indirect
github.com/xdg-go/stringprep v1.0.3 // indirect
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6 // indirect
golang.org/x/text v0.3.7 // indirect
)