-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
29 lines (26 loc) · 1.04 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
module github.com/alistairjoelquinn/go-network
go 1.17
require (
github.com/gofiber/fiber/v2 v2.24.0
github.com/joho/godotenv v1.4.0
github.com/lib/pq v1.10.4
github.com/pascaldekloe/jwt v1.10.0
golang.org/x/crypto v0.0.0-20211202192323-5770296d904e
)
require (
github.com/andybalholm/brotli v1.0.2 // indirect
github.com/aws/aws-sdk-go v1.42.23 // indirect
github.com/fasthttp/websocket v1.4.4 // indirect
github.com/gofiber/websocket/v2 v2.0.15 // indirect
github.com/gofrs/uuid v4.0.0+incompatible // indirect
github.com/gomodule/redigo v1.8.4 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/klauspost/compress v1.13.4 // indirect
github.com/savsgio/gotils v0.0.0-20211223103454-d0aaa54c5899 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.31.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect
)